html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", serif;
    font-size: 16px;
    line-height: 1.4;
}

:root {
    --primaryColor: #1d262f;
    --secondaryColor: #1d262f;
    --hoverColor: #3a4d60;
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1F414B;
}

::-webkit-scrollbar-thumb:hover {
    background: #1F414B;
}

.container {
    width: 1140px;
    margin: 0 auto;
}

.ptb60 {
    padding: 80px 0;
}

.sectionheading {
    font-family: "Montserrat", serif;
    font-weight: 500;
    font-size: 42px;
}

.headinglineanimation:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 4px;
    background: var(--primaryColor);
    transition: all 0.3s ease;
}

.header-line {
    position: relative;
    padding-bottom: 20px;
}

.header-line.leftalign:after {
    right: inherit !important;
}

.header-line:after {
    width: 100px;
    margin: 0 auto;
    transition: all 0.6s ease;
    transition-delay: 0.5s;
}

.resetul {
    padding-left: 0;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.text-center {
    text-align: center;
}

.mt60 {
    margin-top: 60px;
}

.pt60 {
    padding-top: 60px;
}

.pb60 {
    padding-bottom: 60px;
}

.mobileBtnbox {
    display: none;
}

.md-trigger {
    cursor: pointer;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    width: 100%;
    box-sizing: border-box;
    z-index: 9;
}

.header .logo {
    display: flex;
}

.header .logo img {
    width: 200px;
    height: 38px;
    object-fit: contain;
    object-position: left;
}

.header .menu ul {
    display: flex;
    align-items: center;
    padding-left: 0;
    margin: 0;
    gap: 20px;
    list-style-type: none;
}

.header .menu ul li a {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 500;
}

.headercontactbtn {
    padding: 8px 22px;
    border-radius: 20px;
    border: 0;
    background: var(--primaryColor);
    color: #fff !important;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.headercontactbtn:hover {
    background: var(--hoverColor);
    color: #fff !important;
}

.fixedheader {
    position: fixed;
    background: #fff;
    width: 100%;
    top: -1px;
    z-index: 9;
    box-shadow: 0px 0px 4px 1px #ccc;
}

.headercall {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #1d262f !important;
    font-weight: 600;
}

.navToggle {
    display: none;
}

/* Header */

/* Banner */
.banner {
    position: relative;
}

.banner img {
    width: 100%;
    display: block;
}

.bannerimg {
    height: 550px;
    object-position: bottom;
}

.bannercaption {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
}

.bannercaption h1 {
    font-size: 42px;
    color: #fff;
    font-family: "Montserrat", serif;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 1px 2px #333;
}

.bannercaption button {
    padding: 16px 22px;
    font-size: 16px;
    border-radius: 20px;
    border: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Montserrat", serif;
    transition: all 0.3s ease;
}

.bannercaption button:hover {
    background: transparent linear-gradient(180deg, #1F414B 0%, #30545F 3%, #07202C 100%);
    color: #fff;
}

.bannerslider .bannerslider-pagination {
    text-align: center;
    z-index: 9;
    position: absolute;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bannerslider .bannerslider-pagination .swiper-pagination-bullet {
    background: #fff;
    width: 14px;
    height: 14px;
    opacity: 1;
}

.bannerslider .bannerslider-pagination .swiper-pagination-bullet-active {
    width: 20px;
    height: 20px;
}

/* Banner */

/* animation */
.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate__fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

.animationdelay0-2s {
    animation-delay: 0.2s;
}

.animationdelay0-4s {
    animation-delay: 0.4s;
}

.animationdelay0-6s {
    animation-delay: 0.6s;
}

.animationdelay0-8s {
    animation-delay: 0.8s;
}

.animationdelay1s {
    animation-delay: 1s;
}

.animationdelay1-02s {
    animation-delay: 1.2s;
}

.animationdelay1-04s {
    animation-delay: 1.4s;
}

.animationdelay1-06s {
    animation-delay: 1.6s;
}

.animationdelay1-08s {
    animation-delay: 1.8s;
}

.animationdelay2s {
    animation-delay: 2s;
}

.animationdelay2-02s {
    animation-delay: 2.2s;
}

.animationdelay2-04s {
    animation-delay: 2.4s;
}

.animationdelay2-06s {
    animation-delay: 2.6s;
}

.animationdelay2-08s {
    animation-delay: 2.8s;
}

.animationdelay3s {
    animation-delay: 3s;
}

/* animation */

/* Banner Animation */
.bannercaptionanimation {
    position: absolute;
    right: 5%;
    top: 20%;
    width: 30%;
    text-align: center;
}

.bannercaptionanimation .bannercaptionanimationTop img {
    width: 80%;
}

.bannercaptionanimation .bannercaptionanimationTop h2 {
    font-size: 32px;
    text-transform: uppercase;
    animation-delay: 0.3s;
    background: #ffffff38;
    display: inline-block;
    padding: 1px 20px;
    border-radius: 7px;
}

.bannercaptionanimation .bannercaptionanimationTop h3 {
    font-size: 28px;
    margin-top: 10px;
    margin-bottom: 10px;
    animation-delay: 0.7s;
    background: #ffffff38;
    display: inline-block;
    padding: 1px 20px;
    border-radius: 7px;
}

.bannercaptionanimation .price {
    background: var(--hoverColor);
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    border-radius: 7px;
    animation-delay: 1.1s;
}

.bannercaptionanimation .price h4 {
    font-size: 28px;
    color: #fff;
    text-transform: uppercase;
    animation: fadeInZoomOut 1.5s ease-in-out;
    opacity: 0;
    animation-delay: 1.5s;
    position: absolute;
    top: 13px;
    bottom: 0;
}

.bannercaptionanimation .price h5 {
    font-size: 28px;
    color: #fff;
    text-transform: uppercase;
    animation-delay: 2.5s;
    top: 13px;
    bottom: 0;
    position: absolute;
}

@keyframes fadeInZoomOut {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.animate__zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

/* Banner Animation */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

/* Banner Temp3 */
.banner-temp3 .banneritem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 70%) 20%, rgb(0 0 0 / 0%) 40%, rgb(0 0 0 / 20%) 60%, rgb(0 0 0 / 20%) 100%);
    z-index: 2;
}

.bannercaption-temp3 {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 10px 20px;
    display: block;
    box-sizing: border-box;
}

.bannercaption-temp3 .resetul {
    display: flex;
    align-items: center;
}

.bannercaption-temp3 h1 {
    text-shadow: 0 1px 2px #000;
    color: #fff;
    font-size: 34px;
    margin-bottom: 5px;
    font-weight: 700;
}

.bannercaption-temp3 h3 {
    text-shadow: 0 1px 2px #000;
    color: #fff;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
}

.bannercaption-temp3 .resetul {
    margin-top: 15px;
}

.bannercaption-temp3 .resetul li {
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #fff;
}

.bannercaption-temp3 .resetul li h4 {
    text-shadow: 0 1px 2px #000;
    color: #fff;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 600;
}

.bannercaption-temp3 .resetul li p {
    text-shadow: 0 1px 2px #000;
    color: #fff;
    margin: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
}

.bannercaption-temp3 .resetul li button {
    text-shadow: 0 1px 2px #000;
    padding: 12px 22px;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    font-weight: 600;
    border: 0;
    background: var(--primaryColor);
    color: #fff !important;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0px 0px 4px #999;
}

.bannercaption-temp3 .resetul li:last-child {
    border-right: 0;
}

.bannercaption-temp3 .resetul li:nth-last-child(2) {
    border-right: 0;
}

.banner-temp3 .bannerimg {
    height: calc(100vh - 68px);
    object-fit: cover;
}

/* Banner Temp3 */

/* Banner Temp4 */
.banner-temp4 {
    position: relative;
}

.banner-temp4 .banneritem::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* background: radial-gradient(transparent, #00000099);  */
    background-image: radial-gradient(transparent, #000000bf 74%);
}

.bannercaption-temp4 {
    position: absolute;
    left: 5%;
    top: 10%;
}

.bannercaption-temp4 h1 {
    text-shadow: 0 1px 2px #000;
    color: #fff;
    font-size: 34px;
    margin-bottom: 5px;
    font-weight: 900;
}

.bannercaption-temp4 h3 {
    text-shadow: 0 1px 2px #000;
    color: #fff;
    font-size: 16px;
    margin-bottom: 5px;
}

.bannercaption-temp4 h3 .fa {
    margin-right: 6px;
}

.bannercaption-temp4 ul {
    margin: 30px 0;
}

.bannercaption-temp4 ul li {
    margin-bottom: 20px;
}

.bannercaption-temp4 ul li h4 {
    text-shadow: 0 1px 2px #000;
    color: #fff;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    width: fit-content;
    padding: 7px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px -2px;
    background: #00000061;
}

.bannercaption-temp4 ul li h4 .fa {
    margin-right: 6px;
}

.bannercaption-temp4 .bannercaption-temp4-bottom h5 {
    color: #ffffff;
    font-size: 21px;
    border-bottom: 2px solid #fff;
    padding-bottom: 6px;
}

.bannercaption-temp4 .bannercaption-temp4-bottom h6 {
    font-size: 70px;
    color: #fff;
    padding-top: 15px;
    line-height: 0.7;
}

.bannercaption-temp4 .bannercaption-temp4-bottom h6 span {
    font-size: 20px;
}

/* Banner Temp4 */



/* about */
.aboutmain {
    display: flex;
    align-items: center;
    gap: 100px;
}

.aboutleft {
    width: 65%;
}

.aboutleft h3 {
    margin-bottom: 15px;
}

.aboutleft h4 {
    font-size: 24px;
    font-weight: 500;
    color: var(--primaryColor);
}

.about_rerano {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.about_rerano img {
    width: 25px;
}

.aboutbottom {
    border-top: 1px solid #ccc;
    padding-top: 20px;
    margin-top: 20px;
}

.aboutbottom ul {
    display: flex;
    justify-content: space-between;
}

.aboutbottom ul li {
    width: 33.3%;
    text-align: center;
}

.aboutbottom ul li i {
    background: var(--primaryColor);
    width: 60px;
    height: 60px;
    font-size: 26px;
    line-height: 60px;
    color: #fff;
    border-radius: 50%;
}

.aboutbottom ul li h5 {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}

.aboutbottom ul li h6 {
    font-size: 14px;
    color: #333;
}

.primarybutton {
    background: var(--primaryColor);
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    color: #fff;
    border: 0;
    text-transform: uppercase;
}

.aboutright {
    width: 35%;
}

.aboutslider {
    text-align: center;
    width: 100%;
    z-index: 0;
}

.aboutright {
    position: relative;
}

.aboutright::before {
    content: '';
    position: absolute;
    left: -20px;
    top: -20px;
    width: 80px;
    height: 80px;
    background-color: var(--secondaryColor);
    z-index: 0;
}

.aboutright::after {
    content: '';
    position: absolute;
    right: -20px;
    bottom: 10px;
    width: 80px;
    height: 80px;
    background-color: var(--secondaryColor);
    z-index: -1;
}

.aboutsliderItem img {
    width: 100%;
}

.aboutsliderItem a {
    text-decoration: none;
}

.aboutslider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #898686;
}

.aboutslider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    background: #2D525D;
}

/* about */

/* amenities1 */
.amenities1 {
    margin-top: 60px;
}

.amenities1 ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.amenities1 ul li {
    text-align: center;
}

.amenities1 ul li img {
    height: 50px;
    margin-bottom: 15px;
}

.amenities1 ul li h6 {
    font-size: 14px;
    color: #07202C;
    text-align: center;
    font-weight: 600;
}

/* amenities1 */

/* amenities2 */
.galleryheading {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 40px;
}

.galleryheading .sectionheading {
    margin-bottom: 20px;
    color: var(--primaryColor);
}

.galleryheading p {
    width: 52%;
    margin: 0 auto;
}

.amenities2 {
    display: flex;
    gap: 15px;
}

.amenities2 li {
    width: 360px;
}

.amenities2 li img {
    width: 100%;
    border-radius: 5px;
}

.amenities2 li h5 {
    font-size: 22px;
    color: #333;
    font-weight: 500;
    margin-top: 5px;
}

.amenitieshidden {
    overflow: hidden;
}

.js-marquee-wrapper {
    display: flex;
}

.js-marquee {
    float: none;
}

/* amenities2 */

.projecthighlight {
    background: #efefef;
}

.projecthighlightbox ul {
    justify-content: center;
}

.projecthighlightbox ul li {
    width: calc(33% - 13px) !important;
}

.projecthighlightbox ul li p {
    text-align: center;
    font-size: 14px !important;
}

#location {
    background: #efefef;
}

.locationboxs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.locationbox {
    width: calc(33% - 20px);
}

.locationbox h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.locationbox ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.locationbox ul li {
    font-size: 14px;
}

.developermain {
    display: flex;
}

.developerleft {
    width: 75%;
}

.developerleft p {
    line-height: 1.5;
}

.developerright {
    width: 25%;
    text-align: center;
}

.developerright p {
    margin: 0;
}

/* amenities3 */
.amenities3 ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.amenities3 ul li {
    width: calc(33.3% - 13px);
    position: relative;
}

.amenities3 ul li:after {
    content: '';
    position: absolute;
    right: 104%;
    top: calc(50% - 40px);
    height: 50%;
    background: #1d262f8a;
    width: 1px;
}

.amenities3 ul li:first-child:after {
    display: none;
}

.amenities3 ul li:nth-child(5):after {
    display: none;
}

.amenities3 ul li img {
    width: 100%;
}

.amenities3 ul li p {
    font-size: 22px;
    color: #333;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 0;
}

/* amenities3 */

#amenitie {
    background-color: #1d262f1c;
}

/* amenities4 */
.amenities4 h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.amenities4 ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.amenities4 ul li {
    width: calc(14% - 15px);
    padding: 25px;
    box-sizing: border-box;
    border-radius: 16px;
    padding: 5px;
}

.amenities4 ul li h6 {
    min-height: 40px;
}

/* .amenities4 ul li h6 { height:40px; } */
/* amenities4 */


.amenitie-mainbox {
    display: flex;
    justify-content: center;
}

.amenitie-leftbox {
    width: 40%;
}

.amenitie-rightbox {
    width: 40%;
}

.amenitie-mainbox .amenities4 li {
    width: calc(40% - 15px);
}

/* floorplain1 */
.floorplain1row {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.floorplain1row .floorplaincol {
    width: 33.3%;
    border: 2px solid var(--secondaryColor);
}

.floorplain1row .floorplaincol img {
    width: 100%;
    display: block;
    filter: blur(1px);
}

.floorplain1row .floorplaincol p {
    font-size: 16px;
    text-align: center;
    color: #fff;
    margin: 0;
    font-weight: 500;
    background: var(--secondaryColor);
    padding: 10px;
}

.floorplain1row .floorplaincol .floorplainsliderItem {
    position: relative;
}

.floorplain1row .floorplaincol .floorplainsliderItemBtn {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #00000061;
    transition: all 0.3s ease-in-out;
}

.floorplain1row .floorplaincol .floorplainsliderItemBtn p {
    margin-top: 15px;
    color: #fff;
    text-shadow: 1px 1px 3px #000;
}

.floorplain1row .floorplaincol .floorplainsliderItem:hover .floorplainsliderItemBtn {
    opacity: 1;
}

.floorplain1row .floorplaincol .floorplainsliderItem .floorplainsliderItemBtn button {
    background: var(--secondaryColor);
    border: 0;
    font-size: 14px;
    padding: 12px 24px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.floorplain1row .floorplaincol .floorplainsliderItem .floorplainsliderItemBtn button:hover {
    background: var(--hoverColor);
}

/* floorplain1 */

/* floorplain2 */
.floorplain2row .floorplainsliderItem~p {
    background: #fff;
    color: var(--secondaryColor);
    border-top: 2px solid var(--secondaryColor);
}

/* floorplain2 */

/* floorplain3 */
.projectdetails {
    background: var(--secondaryColor);
}

.projectdetails .sectionheading {
    margin-bottom: 15px;
    text-align: center;
    color: #fff;
}

.projectdetails h6 {
    text-align: center;
}

.projectdetails h6 span {
    width: auto;
    display: inline-block;
    font-size: 14px;
    color: #EDAC4B;
    text-transform: uppercase;
    border-bottom: 2px solid #EDAC4B;
    padding-bottom: 10px;
}

.floorplain3 .floorplainmain {
    display: flex;
    gap: 80px;
    margin-top: 40px;
}

.floorplain3 .floorplainleft {
    width: 50%;
}

.floorplain3 .floorplainslider {
    width: 100%;
}

.floorplain3 .floorplainsliderItem {
    position: relative;
}

.floorplain3 .floorplainsliderItem img {
    width: 100%;
}

.floorplain3 .floorplainsliderItem .floorplainsliderItemBtn {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.floorplain3 .floorplainsliderItem .floorplainsliderItemBtn button {
    background: var(--secondaryColor);
    border: 0;
    font-size: 14px;
    padding: 12px 24px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.floorplain3 .floorplainsliderItem .floorplainsliderItemBtn button:hover {
    background: var(--hoverColor);
}

.floorplain3 .floorplainright {
    width: 50%;
}

.floorplain3 .floorplainslider-pagination {
    text-align: center;
}

.floorplain3 .floorplainslider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    background: #D3D3D3;
}

.floorplain3 .floorplainslider-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #D3D3D3;
}

.floorplain3 .floorplainright ul {
    margin-top: 30px;
}

.floorplain3 .floorplainright li {
    display: flex;
    gap: 16px;
    align-items: center;
}

.floorplain3 .floorplainright li:not(:last-child) {
    margin-bottom: 20px;
}

.floorplain3 .floorplainright img {
    width: 32px;
    height: 32px;
}

.floorplain3 .floorplainright p {
    margin-bottom: 0 !important;
    color: #fff;
}

.floorplain3 .downloadfloorplain {
    margin-top: 30px;
}

.floorplain3 .downloadfloorplain button {
    font-size: 14px;
    font-weight: 500;
    color: #FFF;
    text-transform: uppercase;
    border: 0;
    border-bottom: 2px solid #FFF;
    padding-bottom: 8px;
    background: transparent;
    margin-right: 10px;
}

.location {
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding-top: 60px;
    margin-top: 60px;
}

.locationheading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.locationheading .sectionheading {
    width: 39%;
    text-align: left;
}

.whiteBtn {
    padding: 22px 35px;
    font-size: 16px;
    font-weight: 600;
    color: #0D2532;
    text-transform: uppercase;
    border: 0;
    outline: 0;
    background: transparent linear-gradient(180deg, #fff 0%, #fff 3%, #fff 100%);
    border-radius: 30px;
    transition: all .6s cubic-bezier(.55, 0, .1, 1);
}

.whiteBtn:hover {
    background: transparent linear-gradient(180deg, #1F414B 0%, #30545F 3%, #07202C 100%);
    color: #fff;
}

.locationmap {
    margin-top: 30px;
}

.locationmap iframe {
    border-radius: 8px;
}

/* floorplain3 */

/* gallery */
.gallerySlider ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.gallerySlider ul li {
    text-align: center;
    width: 360px;
}

.gallerySlider ul li img {
    width: 100%;
}

.gallerysliderbox {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.gallerymainoverflowhidden {
    overflow: hidden;
}

/* gallery */

/* footer */
.contactmain {
    display: flex;
    background: #fff;
    position: relative;
    margin-top: 50px;
}

.contactmain:before {
    position: absolute;
    left: 2%;
    top: 5%;
    content: '';
    width: 96%;
    height: 90%;
    background: rgba(0, 0, 0, .49);
    filter: blur(41px);
    z-index: -1;
}

.contactleft {
    width: 56%;
    padding: 35px 40px;
    background: #fff;
}

.contactleft .logobox {
    text-align: center;
}

.contactleft h4 {
    font-size: 28px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 400;
    margin-top: 20px;
    text-align: center;
}

.contactright {
    width: 44%;
    background: transparent linear-gradient(180deg, var(--hoverColor) 0%, var(--secondaryColor) 100%) 0% 0% no-repeat padding-box;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contactleft .contactform {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 25px;
}

.contactleft .contactform li {
    width: calc(50% - 14px);
}

.contactleft .contactform li input {
    width: 100%;
    padding: 2px 0 15px;
    font-size: 16px;
    color: #000;
    outline: 0;
    border: 0;
    border-bottom: 2px solid rgba(112, 112, 112, .5);
    background: #fff;
}

.contactleft .contactform li input::placeholder {
    color: #000;
}

.width100 {
    width: 100% !important;
}

.contactleft .contactform .chkbox {
    display: inline-block;
}

.contactleft .contactform .chkbox input {
    width: 15px;
    height: 15px;
    float: left;
    padding: 0;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.contactleft .contactform .chkbox label {
    width: auto;
    height: auto;
    float: left;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.25;
    text-align: left;
    text-transform: none;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
}

.contactleft .contactform .chkbox label:before {
    content: "";
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    border: 1px solid #07202C;
    padding: 0;
    margin-right: 10px;
    position: relative;
    min-width: 15px;
    height: 15px;
    float: left;
    cursor: pointer;
}

.contactleft .contactform .chkbox label:before {
    margin-right: 10px;
}

.contactleft .contactform .chkbox input:checked+label:after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 6px;
    width: 3px;
    height: 8px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: all 0.4s ease;
    z-index: 1;
}

.contactleft .contactform button {
    width: 100%;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    border: 0;
    outline: 0;
    padding: 18px;
    font-size: 14px;
    background: var(--secondaryColor);
    border-radius: 33px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contactleft .contactform button:hover {
    background: var(--hoverColor);
}

.contactright h4 {
    font-size: 28px;
    color: #fff;
}

.contactright p {
    margin: 0;
    color: #fff;
}

.contactright .contactnumber {
    margin-top: 30px;
}

.contactright .contactnumber li {
    margin-bottom: 25px;
}

.contactright .contactnumber li:last-child {
    margin-bottom: 0;
}

.contactright .contactnumber li a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    text-decoration: none;
}

.socialmedia ul {
    display: flex;
    gap: 15px;
}

.socialmedia li a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: all 0.3s ease;
}

.socialmedia li a:hover {
    border-color: #fff;
}

.footermain {
    background: url(../images/footerbackground.jpg) no-repeat center bottom;
    background-size: 100% 63%;
}

.footer {
    display: flex;
    padding: 20px 0;
    margin-top: 40px;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .4);
}

.footerleft {
    display: flex;
    gap: 100px;
}

.footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    margin: 0;
}

.footer a {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

.disclaimer {
    color: #fff;
    font-size: 12px;
}

/* footer */

/* footer2 */
.footer2 {
    padding: 20px;
    background-color: #444;
}

.footerlogo {
    text-align: center;
}

.footerlogo img {
    width: 150px;
    margin: 30px auto;
}

.footerbody p {
    margin: 0;
    font-size: 12px;
    color: #fff;
}

/* footer2 */

/* enquiryform2 */
.formmainbox {
    background: var(--primaryColor);
}

.formmainbox .sectionheading {
    color: #fff;
}

.formmainbox .contactform {
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    margin: 0 auto;
    gap: 25px;
}

.formmainbox .contactform li {
    width: calc(50% - 14px);
}

.formmainbox .contactform li input {
    width: 100%;
    padding: 2px 0 15px;
    font-size: 16px;
    color: #333;
    outline: 0;
    border: 0;
    border-bottom: 2px solid rgba(112, 112, 112, .5);
    background: #fff;
    padding: 15px;
    box-sizing: border-box;
}

.formmainbox .contactform li input::placeholder {
    color: #333;
}

.width100 {
    width: 100% !important;
}

.formmainbox .contactform .chkbox {
    display: inline-block;
}

.formmainbox .contactform .chkbox input {
    width: 15px;
    height: 15px;
    float: left;
    padding: 0;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.formmainbox .contactform .chkbox label {
    width: auto;
    height: auto;
    float: left;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.25;
    text-align: left;
    text-transform: none;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    color: #fff;
}

.formmainbox .contactform .chkbox label:before {
    content: "";
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    border: 1px solid #ffffff;
    padding: 0;
    margin-right: 10px;
    position: relative;
    min-width: 15px;
    height: 15px;
    float: left;
    cursor: pointer;
}

.formmainbox .contactform .chkbox label:before {
    margin-right: 10px;
}

.formmainbox .contactform .chkbox input:checked+label:after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 6px;
    width: 3px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: all 0.4s ease;
    z-index: 1;
}

.formmainbox .contactform button {
    width: 200px;
    margin: 0 auto;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    border: 0;
    outline: 0;
    padding: 18px;
    font-size: 14px;
    background: #fff;
    border-radius: 33px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.formmainbox .contactform button:hover {
    background: var(--hoverColor);
    color: #fff;
}

.colorwhite {
    color: #fff;
}

/* enquiryform2 */

/* popup */
.enquirypopup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    display: none;
}

.enquirypopup .contactleft {
    width: 500px;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
    box-shadow: 1px 1px 6px 1px var(--secondaryColor);
    border-radius: 6px;
}

.popupoverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(9px);
    /* Add this line */
    backdrop-filter: blur(9px);
}

.closebtn {
    position: absolute;
    top: -15px;
    right: -15px;
    cursor: pointer;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    color: #fff;
    box-shadow: 0px 0px 6px 0px var(--secondaryColor);
}

.closebtn img {
    width: 40%;
}

.showpopup {
    cursor: pointer;
}

.md-show {
    display: flex !important;
}

.show {
    display: block !important;
}

.logobox img {
    width: 120px;
}

/* popup */

/* Thankyou page */
.thankyoutick {
    width: 130px;
    display: block;
    margin: 40px auto 0;
    margin-bottom: 30px;
}

.thankyoutick .path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}

.thankyoutick .path.circle {
    -webkit-animation: dash 0.9s ease-in-out;
    animation: dash 0.9s ease-in-out;
}

.thankyoutick .path.line {
    stroke-dashoffset: 1000;
    -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
    animation: dash 0.9s 0.35s ease-in-out forwards;
}

.thankyoutick .path.check {
    stroke-dashoffset: -100;
    -webkit-animation: dash-check 0.9s 0.35s ease-in-out forwards;
    animation: dash-check 0.9s 0.35s ease-in-out forwards;
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

@keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

.thankyouBox {
    text-align: center;
}

.thankyouBox img {
    width: 100px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.thankyouBox h1 {
    margin-bottom: 20px;
}

.thankyouBox p {
    font-size: 20px;
    margin: 0;
    margin-bottom: 30px;
}

.thankyouBox a {
    background: var(--primaryColor);
    padding: 12px 22px;
    font-size: 14px;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
}

/* Thankyou page */

.tncpopup {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    top: 0;
    bottom: 0;
    background: #0000005c;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tncpopupbox {
    width: 80%;
    margin: 0 auto;
    background: #fff;
    position: relative;
    height: 80vh;
    padding: 25px 0;
    border-radius: 19px;
    overflow: hidden;
    padding-bottom: 20px;
}

.tncpopupbox_title {
    font-size: 22px;
    color: #333;
    margin: 0;
    padding-left: 20px;
}

.popupdata {
    height: 74vh;
    overflow: scroll;
    padding: 20px;
}

.popupdata h3 {
    font-size: 1.2rem;
}

.popupdata p {
    margin-bottom: 10px;
}

.popupdata table {
    margin-bottom: 10px;
}

.closepopup {
    position: absolute;
    right: 17px;
    top: 17px;
    font-size: 25px;
    line-height: normal;
    cursor: pointer;
    width: 30px;
    height: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popupdata::-webkit-scrollbar {
    width: 4px;
}

.popupdata::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.popupdata::-webkit-scrollbar-thumb {
    background: #888;
}

.popupdata::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.tearmsandconditionbox {
    color: #fff;
    text-align: center;
    margin-top: 5px;
    display: block;
}

.tearmsandconditionbox a {
    color: #fff;
    display: inline-block;
    margin: 0 5px;
    text-decoration: none;
    text-decoration: underline;
}


/* 
.projectdetails { background:var(--secondaryColor); }
.projectdetails .sectionheading { margin-bottom:15px; text-align:center; color:#fff; }
.projectdetails h6 { text-align:center; }
.projectdetails h6 span { width: auto; display: inline-block; font-size: 14px; color: #EDAC4B; text-transform: uppercase; border-bottom: 2px solid #EDAC4B; padding-bottom: 10px; }
.downloadfloorplain { margin-top:30px; }
.downloadfloorplain button { font-size: 14px; font-weight: 500; color: #FFF; text-transform: uppercase; border:0; border-bottom: 2px solid #FFF; padding-bottom: 8px; background:transparent; margin-right:10px; }
.location { border-top:1px solid rgba(255, 255, 255, .2); padding-top:60px; margin-top:60px; }
.locationheading { display:flex; align-items:center; justify-content:space-between; }
.locationheading .sectionheading { width:39%; text-align:left; }
.whiteBtn { padding: 22px 35px; font-size: 16px; font-weight:600; color: #0D2532; text-transform: uppercase; border: 0; outline: 0; background: transparent linear-gradient(180deg, #fff 0%, #fff 3%, #fff 100%); border-radius: 30px; transition: all .6s cubic-bezier(.55, 0, .1, 1); }
.whiteBtn:hover {  background:transparent linear-gradient(180deg, #1F414B 0%, #30545F 3%, #07202C 100%); color:#fff;  }
.locationmap { margin-top:30px; }
.locationmap iframe { border-radius:8px; }
.gallery { overflow:hidden; padding-bottom:20px; }
.galleryTwo {  width:100%; padding-top:80px; }
.galleryheading .sectionheading { margin-bottom:20px; }
.marquee3 { float: left; }
.thankyouBox { text-align:center; }
.thankyouBox img { width:100px; margin:0 auto; margin-bottom:20px; }
.thankyouBox h1 { margin-bottom:20px; }
.thankyouBox p { font-size:20px; margin:0; margin-bottom:30px; }
.thankyouBox a { background: transparent linear-gradient(180deg, #07202C 0%, #30545F 3%, #1F414B 100%); padding:12px 22px; font-size:14px; color:#fff; border-radius:20px; text-decoration:none;  }
.background100 { background-size: 100%; }
.stickypoup { font-weight: 400; color: #fff; text-transform: uppercase; border: 0; outline: 0; padding: 18px; font-size: 14px; background: transparent linear-gradient(180deg, #1F414B 0%, #30545F 3%, #07202C 100%); border-radius: 33px; }
.displayblock { display: block !important; }
.stickycta { z-index: 1; position: fixed; top: 50%; right: -80px; background:var(--secondaryColor); color: #fff; border: 0; padding: 20px; font-size: 16px; text-transform: uppercase; letter-spacing: 2px; transform: rotate(-90deg); }
.projectmain { position:relative; }
.blueBtn { background: transparent linear-gradient(180deg, #1F414B 0%, #30545F 3%, #07202C 100%); color:#fff; }
.amenities3blox .galleryOneList li { width:100%; } */
:root {
    --primaryColor: #1d262f;
    --secondaryColor: #1d262f;
    --hoverColor: #3a4d60;
}

@media only screen and (max-width: 1200px) {

    /* common */
    body {
        font-size: 14px;
    }

    .container {
        width: 960px;
    }

    .sectionheading {
        font-size: 32px;
    }

    .whiteBtn {
        font-size: 14px;
    }

    /* common */

    /* .downloadfloorplain button { margin:0; margin-bottom:20px; }
	.floorplainright img { width:22px; height:22px; }
	.floorplainright p { margin-top:0; }
	.downloadfloorplain button { text-align:left; } */
}

@media only screen and (max-width: 990px) {

    /* common */
    .container {
        width: 720px;
    }

    /* common */

    /* header */
    .header .menu ul {
        gap: 20px;
    }

    /* header */

    /* about */
    .aboutmain {
        gap: 30px;
    }

    .aboutleft h3 {
        margin-bottom: 10px;
    }

    /* about */

    /* amenities1 */
    .amenities1 ul li h6 {
        font-size: 12px;
    }

    .amenities1 ul li img {
        height: 50px;
        margin-bottom: 5px;
    }

    /* amenities1 */

    /* floorpain3 */
    .floorplain3 .floorplainmain {
        gap: 30px;
    }

    .locationheading .sectionheading {
        width: 70%;
    }

    .floorplain3 .downloadfloorplain button {
        font-size: 12px;
        border-bottom: 1px solid #fff;
        padding-bottom: 4px;
        margin-bottom: 20px;
    }

    /* floorpain3 */

}

@media only screen and (max-width: 768px) {

    /* common */
    .container {
        width: 90%;
    }

    /* common */
}

@media only screen and (max-width: 680px) {
    .header .menu ul li a.headercontactbtn {
        display: none;
    }

    /* common */
    .stickycta {
        bottom: 0;
        transform: rotate(0);
        left: 0;
        right: 0;
        top: inherit;
        padding: 15px;
        font-size: 14px;
    }

    .ptb60 {
        padding: 60px 0;
    }

    .mobileBtnbox {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
        background: var(--secondaryColor);
    }

    .mobileBtnbox:after {
        position: absolute;
        left: 0;
    }

    .mobileBtnbox .mobileBtn {
        padding: 14px 10px;
        background: var(--secondaryColor);
        color: #fff;
        width: 100%;
        text-align: center;
        text-decoration: none;
        font-size: 14px;
        text-transform: uppercase;
    }

    /* .mobileBtnbox .mobileBtn:last-child { border-left: 1px solid #fff; } */
    /* common */

    /* Header */
    .header .menu ul {
        flex-direction: column;
        align-items: baseline;
        gap: 0;
    }

    .header .menu ul li:not(:last-child) {
        border-bottom: 1px solid #cccccc83;
        width: 100%;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .header .menu ul li:last-child {
        border-bottom: 0;
    }

    .header .menu ul li a {
        font-size: 18px;
        color: #333;
        display: block;
    }

    .headercontactbtn {
        color: #fff !important;
    }

    .navToggle {
        display: block;
        width: 22px;
        height: 15px;
        margin-top: 0;
        position: absolute;
        top: 20px;
        right: 20px;
        transition: 0.5s ease-in-out;
        cursor: pointer;
        z-index: 99999;
    }

    .navToggle span {
        width: 22px;
        height: 2px;
        border-radius: 4px;
        position: absolute;
        left: 0;
        top: 0;
        background-color: #333;
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -ms-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }

    .navToggle span:nth-child(1) {
        top: 0px;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .navToggle span:nth-child(2) {
        top: 6px;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .navToggle span:nth-child(3) {
        top: 12px;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        transition: 0s ease-in-out;
    }

    .navToggle.open span {
        background-color: #333;
    }

    .navToggle.open span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .navToggle.open span:nth-child(2) {
        top: 11px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .navToggle.open span:nth-child(3) {
        opacity: 0;
    }

    .menu {
        position: fixed;
        left: -100%;
        transition: all 0.3s ease;
        top: 0;
        box-sizing: border-box;
        background: #fff;
        height: 100vh;
        width: 100%;
        padding: 50px 40px;
    }

    .open-menu {
        left: 0;
        z-index: 9;
    }

    /* Header */

    /* Banner */
    .banner img {
        object-fit: cover;
        height: calc(100vh - 68px);
    }

    .bannercaption h1 {
        font-size: 32px;
    }

    .bannercaption button {
        font-size: 14px;
        padding: 12px 20px;
    }

    .bannerslider .bannerslider-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }

    .bannerslider .bannerslider-pagination .swiper-pagination-bullet-active {
        width: 16px;
        height: 16px;
    }

    /* Banner */

    /* Banner animation */
    .bannercaptionanimation .bannercaptionanimationTop img {
        height: auto;
        margin: 0 auto;
    }

    .bannercaptionanimation {
        right: 0;
        left: 0;
        width: 90%;
        margin: 0 auto;
        bottom: 0;
        top: inherit;
        padding: 10px;
    }

    /* Banner animation */

    /* Banner Temp3 */
    .bannercaption-temp3 {
        bottom: 0px;
        padding-bottom: 90px;
    }

    .bannercaption-temp3 h1 {
        font-size: 22px;
    }

    .bannercaption-temp3 h3 {
        font-size: 14px;
    }

    .bannercaption-temp3 .resetul {
        flex-wrap: wrap;
    }

    .bannercaption-temp3 .resetul li {
        margin-bottom: 6px;
        padding-bottom: 6px;
        border-bottom: 1px solid rgb(255 255 255 / 17%);
        width: 100%;
        border-right: 0;
        padding-right: 0;
        margin-right: 0;
        display: flex;
        gap: 10px;
        align-items: baseline;
		        justify-content: space-between;
    }

    .bannercaption-temp3 .resetul li:last-child {
        border-bottom: 0;
    }

    .bannercaption-temp3 .resetul li:nth-last-child(2) {
        border-bottom: 0;
    }

    .bannercaption-temp3 .resetul li h4 {
        font-size: 16px;
        margin-bottom: 0;
    }

    .bannercaption-temp3 .resetul li p {
        margin-bottom: 0;
    }

    .bannercaption-temp3 .resetul li button {
        display: none;
    }

    /* Banner Temp3 */

    /* Banner Temp4 */
    .bannercaption-temp4 {
        position: initial;
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 20px;
    }

    .banner-temp4 .bannerimg {
        height: auto !important;
    }

    .banner-temp4 .banneritem::before {
        background: none;
    }

    .bannercaption-temp4 h1 {
        color: #333;
        text-shadow: none;
        font-size: 26px;
    }

    .bannercaption-temp4 h3 {
        color: #333;
        text-shadow: none;
        font-size: 14px;
    }

    .bannercaption-temp4 ul {
        margin: 10px 0;
        margin-bottom: 20px;
        text-shadow: none;
    }

    .bannercaption-temp4 ul li {
        margin-bottom: 10px;
    }

    .bannercaption-temp4 ul li h4 {
        color: #333;
        background: none;
        text-shadow: none;
        font-size: 14px;
    }

    .bannercaption-temp4 .bannercaption-temp4-bottom h5 {
        color: #333;
        border-bottom: 1px solid #333;
        text-shadow: none;
        font-size: 18px;
    }

    .bannercaption-temp4 .bannercaption-temp4-bottom h6 {
        color: #333;
        font-size: 32px;
        font-weight: 800;
        text-shadow: none;
    }

    .bannercaption-temp4 .bannercaption-temp4-bottom h6 span {
        font-size: 16px;
    }

    /* Banner Temp4 */

    /* About */
    .aboutmain {
        flex-direction: column-reverse;
    }

    .aboutleft {
        width: 100%;
    }

    .aboutright {
        width: 100%;
    }

    /* About */

    /* amenities1 */
    .amenities1 ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .amenities1 ul li {
        width: 100px;
    }

    /* amenities1 */

    /* amenities3 */
    .amenities3 ul li {
        width: 100%;
    }

    .amenities3 ul li p {
        font-size: 16px;
    }

    /* amenities3 */

    /* floorplain1 */
    .floorplain1row {
        flex-direction: column;
    }

    .floorplain1row .floorplaincol {
        width: 100%;
    }

    .floorplain1row .floorplaincol .floorplainsliderItem .floorplainsliderItemBtn {
        opacity: 1;
        background: none;
        display: flex;
        text-align: left;
        align-items: center;
    }

    .floorplain1row .floorplaincol .floorplainsliderItem .floorplainsliderItemBtn p {
        text-align: left;
        text-shadow: none;
        color: #333;
        margin: 0;
    }

    .floorplain1row .floorplaincol .floorplainsliderItem .floorplainsliderItemBtn button {
        font-size: 12px;
        padding: 10px 16px;
    }

    /* floorplain1 */

    /* floorplain2 */
    .floorplain2row .floorplaincol .floorplainsliderItem .floorplainsliderItemBtn {
        position: absolute;
        justify-content: center;
    }

    /* floorplain2 */

    /* floorplain3 */
    .floorplain3 .floorplainmain {
        flex-direction: column;
    }

    .floorplain3 .floorplainleft {
        width: 100%;
    }

    .floorplain3 .floorplainright {
        width: 100%;
    }

    /* floorplain3 */

    /* footer */
    .contactleft {
        width: 100%;
        box-sizing: border-box;
    }

    .contactright {
        box-sizing: border-box;
    }

    .contactright {
        width: 100%;
    }

    .contactmain {
        flex-direction: column;
        margin: 0 6%
    }

    .contactright .contactnumber {
        margin-bottom: 30px;
    }

    .contactmain {
        margin-top: 30px;
    }

    .footerleft {
        gap: 30px;
        justify-content: center;
    }

    .footerright {
        text-align: center;
    }

    .footer {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
    }

    .contactleft h4 {
        font-size: 24px;
    }

    .contactleft .contactform {
        gap: 15px;
    }

    /* footer */

    /* footer2 */
    .footer2 {
        padding-bottom: 80px;
    }

    .formmainbox .contactform {
        flex-direction: column;
        width: 90%;
    }

    .formmainbox .contactform li {
        width: 100%;
    }

    /* footer2 */

    /* popup */
    .enquirypopup .contactleft {
        width: 100%;
        padding-bottom: 45px 30px;
    }

    .contactleft .contactform li {
        width: 100%;
    }

    .closebtn img {
        width: 18px;
    }

    /* popup */

    .projecthighlightbox ul li {
        width: 100% !important;
    }

    .locationbox {
        width: 100%;
    }

    .developermain {
        flex-wrap: wrap;
    }

    .developerleft {
        width: 100%;
    }

    .developerright {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .developerright img {
        margin: 0 auto;
    }

    .amenitie-mainbox {
        flex-direction: column;
    }

    .amenitie-leftbox {
        width: 100%;
    }

    .amenitie-rightbox {
        width: 100%;
    }

    .banner-temp3 .bannerimg {
        height: auto;
    }

    .header .logo img {
        height: 35px;
        width: auto;
    }

    .header {
        padding: 10px 30px;
    }

    .aboutright::before {
        left: -15px;
        top: -15px;
    }

    .aboutright::after {
        right: -15px;
        bottom: 18px;
    }

    .projecthighlightbox ul li:nth-child(3):after {
        display: none;
    }

    .projecthighlightbox ul li:last-child::after {
        display: none;
    }

    .developerleft {
        text-align: center;
        margin-bottom: 20px;
    }

    /* 
	.floorplainsliderItem .floorplainsliderItemBtn button { font-size:12px; padding:12px 22px; }
	.amenities3blox .galleryOneList { flex-direction: column; }
	.floorplaincol p { font-size:12px; }*/
}

@media only screen and (max-width:520px) {

    /* common */
    .sectionheading {
        font-size: 28px;
    }

    .whiteBtn {
        padding: 16px 35px;
    }

    /* common */

    /* banner */
    .bannercaption h1 {
        font-size: 24px;
    }

    /* banner */
    .amenities1 ul li {
        width: 45%;
    }

    /* amenities1 */

    /* footer */
    .contactright .contactnumber {
        margin: 20px 0;
    }

    .contactright .contactnumber li a {
        font-size: 14px;
    }

    .contactright .contactnumber li {
        margin-bottom: 15px;
    }

    /* footer */

    /* .locationheading .sectionheading { text-align:center; }
	.banner img { height:70vh; }
	.floorplainmain { margin-top:20px; }*/
}