* {
    margin: 0;
    padding: 0
}

:root {
    --yellow: #ffcc00;
    --golden: #cba857;
    --brown: #B18535;
    --golden-grad: linear-gradient(45deg, #BF953F, #8a6417, #cf9e34);
    --golden-btn-grad: linear-gradient(45deg, #BF953F, #FCF6BA, #cf9e34)
}

@font-face {
    font-family: TitilliumWeb;
    src: url(../assets/fonts/TitilliumWeb-Light.ttf);
    font-weight: 300;
    font-display: swap
}

@font-face {
    font-family: TitilliumWeb;
    src: url(../assets/fonts/TitilliumWeb-Regular.ttf);
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: TitilliumWeb;
    src: url(../assets/fonts/TitilliumWeb-SemiBold.ttf);
    font-weight: 500;
    font-display: swap
}

@font-face {
    font-family: TitilliumWeb;
    src: url(../assets/fonts/TitilliumWeb-Bold.ttf);
    font-weight: 600;
    font-display: swap
}

@font-face {
    font-family: TitilliumWeb;
    src: url(../assets/fonts/TitilliumWeb-Black.ttf);
    font-weight: 800;
    font-display: swap
}

html {
    overflow-x: hidden
}

body {
    font-family: 'TitilliumWeb';
    overflow-x: hidden;
    padding-right: 0 !important;
    background: #000
}

.container {
    max-width: 80%
}

.btn, button, .form-control {
    border-radius: 0;
    box-shadow: none !important
}

.form-control:focus {
    border-color: var(--brown)
}

.bordered_btn {
    border: 2px solid #fff;
    color: #fff;
    padding: 13px 30px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 200ms ease-in-out;
    font-weight: 500
}

.bordered_btn:hover {
    border-color: var(--golden);
    color: #fff;
    background: var(--golden)
}

.btn_dark {
    color: #fff !important;
    padding: 13px 30px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 200ms ease-in-out;
    background: #000
}

.btn_yellow {
    color: #000 !important;
    padding: 13px 30px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 200ms ease-in-out;
    background: var(--golden-btn-grad)
}

a, a:hover {
    text-decoration: none;
    font-family: 'TitilliumWeb';
    color: #000
}

ul, ol {
    margin: 0;
    padding: 0
}

li {
    list-style-type: None
}

.form-control {
    min-height: 46px
}

.mx_-5 {
    margin-left: -5px !important;
    margin-right: -5px !important
}

.mx_-7 {
    margin-left: -7px !important;
    margin-right: -7px !important
}

.mx_-10 {
    margin-left: -10px !important;
    margin-right: -10px !important
}

.mb_5 {
    margin-bottom: 5px !important
}

.mb_10 {
    margin-bottom: 10px !important
}

.mb_14 {
    margin-bottom: 14px !important
}

.mt_20 {
    margin-top: 20px !important
}

.mt_30 {
    margin-top: 30px !important
}

.mt_40 {
    margin-top: 40px !important
}

.mt_100 {
    margin-top: 100px !important
}

.px_5 {
    padding-left: 5px !important;
    padding-right: 5px !important
}

.px_7 {
    padding-left: 7px !important;
    padding-right: 7px !important
}

.px_10 {
    padding-left: 10px !important;
    padding-right: 10px !important
}

.pr_50 {
    padding-right: 50px !important
}

.pr_80 {
    padding-right: 80px !important
}

.pl_150 {
    padding-left: 150px !important
}

.custom_section {
    padding: 100px 0
}

.sub_heading {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: inline-block;
    margin: 0;
    position: relative;
    color: #fff
}

.sub_heading.text-center {
    display: table;
    margin: auto
}

.sub_heading:before {
    position: absolute;
    content: '';
    height: 3px;
    width: 100%;
    background: var(--golden);
    bottom: 2px
}

.sub_heading.dark_before:before {
    background: #666
}

.heading {
    font-size: 50px;
    line-height: 60px;
    font-weight: 400;
    margin-bottom: 50px;
    position: relative;
    color: #fecc15;
    -webkit-background-clip: text
}

section {
    background: #111214
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 0;
    transition: all 200ms ease-in-out;
    background: #47444452;
}

.navbar.active {
    background: rgb(0 0 0 / 90%);
    box-shadow: 0 5px 40px rgb(0 0 0 / 8%)
}

.navbar .container {
    display: block
}

.navbar .top_row {
    text-align: right;
    padding: 10px 0;
    transition: all 200ms ease-in-out
}

.navbar.active .top_row {
    padding: 5px 0
}

.navbar .call {
    display: inline-flex;
    justify-content: flex-end;
    color: #fff;
    align-items: center
}

.navbar.active .call {
    color: #333
}

.navbar .call small {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 12px;
    color: #dfdfdf
}

.navbar.active .call small {
    color: #bdbdbd
}

.navbar .call .l {
    line-height: 18px;
    font-size: 18px;
    color: #fff;
    font-weight: 500
}

.navbar.active .call .l {
    line-height: 16px;
    font-size: 16px
}

.navbar.active .call .l {
    color: #fff
}

.navbar .call .mobile_icon {
    width: 34px;
    height: 34px
}

.navbar .call .mobile_dark {
    display: none
}

.navbar.active .call .mobile_dark {
    filter: invert(1);
    display: block;
    width: 24px;
    height: 24px
}

.navbar.active .call .mobile_light {
    display: none
}

.navbar .navbar-brand {
    padding: 0;
    margin: 0;
    max-width: 220px;
    margin-top: -40px;
    transition: all 200ms ease-in-out
}

.navbar.active .navbar-brand {
    max-width: 130px;
    margin-top: -35px
}

.navbar .logo_dark {
    display: None
}

.navbar .bottom_row {
    display: flex
}

.navbar .nav-item:not(:last-child) {
    margin-right: 15px
}

.navbar .navbar-nav a {
    color: #fff;
    letter-spacing: 1px;
    font-size: 18px;
    transition: all 200ms ease-in-out
}

.navbar.active .navbar-nav a {
    color: #fff
}

.navbar .navbar-collapse {
    position: relative
}

.navbar .navbar-collapse:before {
    position: absolute;
    content: '';
    height: 1px;
    width: calc(100% - 50px);
    background: rgba(255 255 255 / 15%);
    top: 0;
    right: 0
}

.navbar.active .navbar-collapse:before {
    background: rgb(255 255 255 / 20%)
}

.banner_section {
    position: relative;
    background: #fff0
}

#bannerCarousel {
    padding: 99px 0 108px;
    min-height: 100vh;
    display: flex;
    align-items: center
}

.banner_section .carousel-inner {
    position: absolute;
    height: 100%;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%
}

#bannerCarousel .carousel-inner, #bannerCarousel .carousel-item {
    height: 100%
}

#bannerCarousel .carousel-item img {
    height: 100%;
    object-fit: cover;
    width: 100%
}

#bannerCarousel .carousel-item {
    position: relative
}

#bannerCarousel .carousel-item:before {
    position: absolute;
    content: '';
    left: 0;
    display: none;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(70deg, rgb(0 0 0), rgb(0 0 0 / 55%), rgba(0 0 0 / 20%))
}

.banner_section .left_col {
    display: flex;
    align-items: center;
    position: unset
}

.banner_section .banner_contents {
    z-index: 9
}

.banner_section .banner_contents_row {
    width: 100%;
    padding: 20px 0
}

.banner_section .content_box {
    max-width: fit-content;
    display: none;
    padding: 50px 0
}

.banner_section .content_box .box {
    color: #fff
}

.banner_section .content_box .main_text {
    width: max-content;
    margin-bottom: 15px
}

.banner_section .content_box .tagline {
    font-weight: 300;
    font-size: 38px;
    letter-spacing: .5px;
    margin-bottom: 12px
}

.banner_section .content_box .b_tagline {
    font-weight: 300;
    font-style: italic;
    letter-spacing: .5px;
    padding: 10px 40px;
    width: max-content;
    background: linear-gradient(332deg, #fecc15, #5e8b6c, #fecc15);
    background-size: 400% 400%;
    animation: Gradient 3s ease infinite;
    -webkit-animation: Gradient 3s ease infinite;
    -moz-animation: Gradient 3s ease infinite;
    animation-delay: 2s;
    margin: 0
}

.banner_section .content_box .b_tagline span {
    font-style: normal;
    font-weight: 500
}

.banner_section .content_box .project_logo {
    max-width: 200px;
    margin-bottom: 5px
}

.banner_section .content_box .location {
    font-size: 18px;
    letter-spacing: .5px
}

.banner_section .content_box .typo {
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: 400;
    margin-bottom: 0
}

.banner_section .content_box .price {
    font-size: 50px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 600;
    margin: 0;
    margin-top: 20px
}

.banner_section .content_box .price span {
    display: block;
    font-size: 20px
}

.banner_section .possession {
    color: #333;
    padding: 17px 40px;
    margin-top: 25px;
    background: linear-gradient(-45deg, var(--golden), #fde893, var(--golden), #fde893);
    background-size: 400% 400%;
    -webkit-animation: Gradient 3s ease infinite;
    animation-delay: 2s;
    -moz-animation: Gradient 3s ease infinite;
    animation: Gradient 3s ease infinite;
    display: flex;
    align-items: center;
    max-width: max-content
}

@-webkit-keyframes Gradient {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

@-moz-keyframes Gradient {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

@keyframes Gradient {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

.banner_section .possession .l {
    color: #505050;
    line-height: 18px;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 500;
    margin-right: 20px;
    position: relative
}

.banner_section .possession .l:before {
    position: absolute;
    content: '';
    height: 80%;
    width: 2px;
    background: rgba(0 0 0 / 30%);
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    right: -20px
}

.banner_section .possession .l span {
    display: block
}

.banner_section .possession .r {
    margin-left: 20px
}

.banner_section .possession h4 {
    margin: 0;
    font-size: 44px;
    font-weight: 600
}

.banner_section .payment_plan {
    display: flex;
    align-items: center;
    margin-top: 25px
}

.banner_section .payment_plan .icon {
    border: 2px solid #fff;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center
}

.banner_section .payment_plan img {
    max-width: 35px
}

.banner_section .payment_plan .text {
    margin-left: 15px
}

.banner_section .payment_plan h4 {
    font-size: 45px;
    letter-spacing: 1px;
    margin-bottom: 0
}

.banner_section .payment_plan h4 span {
    animation: color-animation 2s linear infinite
}

.banner_section .payment_plan h4 span:nth-child(1) {
    --color-1: var(--golden);
    --color-2: #fff;
    --color-3: #fff
}

.banner_section .payment_plan h4 span:nth-child(2) {
    --color-1: #fff;
    --color-2: var(--golden);
    --color-3: #fff
}

.banner_section .payment_plan h4 span:nth-child(3) {
    --color-1: #fff;
    --color-2: #fff;
    --color-3: var(--golden)
}

@keyframes color-animation {
    0% {
        color: var(--color-1)
    }

    33.33% {
        color: var(--color-1)
    }

    33.34% {
        color: var(--color-2)
    }

    66.66% {
        color: var(--color-2)
    }

    66.67% {
        color: var(--color-3)
    }

    100% {
        color: var(--color-3)
    }
}

.banner_section .payment_plan p {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #dfdfdf
}

.banner_section .brochure_btn {
    margin-top: 50px
}

.banner_section .right_col {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.banner_section .form_box {
    backdrop-filter: blur(4px);
    position: relative
}

.banner_section .form_box .project_status {
    position: absolute;
    max-width: 190px;
    right: -60px;
    top: -60px;
    transform: rotate(7deg)
}

.form-box-top {
    width: 350px;
    margin-left: auto
}

.form-box-top button.btn_top {
    width: 100%;
    color: #000 !important;
    background-color: #8c946d !important;
    padding: 8px 15px;
    font-size: 24px;
    letter-spacing: .5px;
    margin-top: 10px
}

.banner_section .project_logo {
    max-width: 200px
}

.banner_section .form_box .location {
    font-size: 17px;
    margin: 15px 0 0;
    color: #fff;
    font-weight: 300
}

.banner_section .additional {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0
}

.banner_section .additional .image_col {
    position: absolute;
    width: 200px;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgb(255 255 255 / 90%);
    text-align: center
}

.banner_section .image_col img {
    height: 100%;
    object-fit: cover;
    width: 100%
}

.banner_section .additional .content_col {
    background: var(--brown);
    padding: 15px 30px;
    display: none
}

.banner_section .additional .content_col ul {
    display: flex;
    align-items: center
}

.banner_section .additional .content_col li {
    list-style-type: none;
    position: relative
}

.banner_section .additional li:not(:last-child) {
    margin-right: 50px
}

.banner_section .additional li:not(:last-child):before {
    position: absolute;
    content: '';
    height: 50%;
    width: 1px;
    background: rgba(0 0 0 / 15%);
    top: 50%;
    transform: translateY(-50%);
    right: -25px
}

.banner_section .content_col h5 {
    position: relative;
    margin: 0;
    font-size: 17px;
    color: #fff;
    font-weight: 400;
    letter-spacing: .5px
}

.banner_section .content_col p {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: .5px;
    color: #fff
}

.banner_section .arrow_col button {
    position: relative;
    height: 50%;
    width: 60px;
    opacity: 1
}

.banner_section .arrow_col {
    background: #2e2e30;
    display: flex;
    padding: 24px;
    padding-bottom: 14px
}

.banner_section .arrow_col img {
    filter: invert(1);
    max-width: 16px
}

.banner_section .carousel-indicators {
    display: none
}

.banner_section .form_heading {
    margin-top: 15px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #fff;
    font-size: 18px
}

.banner_section .form {
    max-width: 500px;
    padding: 15px 25px
}

.banner_section .form button[type=submit] {
    width: 100%;
    background: #000;
    color: #fff !important;
    font-size: 15px
}

.patch_section {
    padding: 7px
}

.overview_section {
    background: #111214;
    position: relative
}

.overview_section .container {
    max-width: 90%;
    margin-right: 0
}

.overview_section .bg_image {
    position: absolute;
    content: '';
    background: url(../assets/overview-img2.webp) no-repeat center;
    background-size: cover;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%
}

.box-about-t {
    display: grid;
    align-items: center;
    height: 100%
}

.overview_section .bg_image:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(191 149 63 / 90%)
}

.overview_section .sub_heading, .overview_section .heading {
    color: #fff;
    background: unset;
    -webkit-text-fill-color: unset
}

.overview_section .right_col img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0
}

.overview_section p {
    line-height: 28px;
    font-size: 18px;
    letter-spacing: 1px;
    color: #fff
}

.overview_section .high {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1
}

.overview_section .high li {
    font-size: 60px;
    line-height: 50px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    position: relative;
    padding: 15px;
    background-image: linear-gradient(180deg, transparent, #b6842d)
}

.overview_section .high li:before {
    position: absolute;
    font-size: 60px;
    line-height: 70px;
    bottom: 70%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    white-space: nowrap;
    color: #fff;
    text-shadow: -1px 0 1px rgb(0 0 0 / 12%), 0 1px 1px rgb(0 0 0 / 12%), 1px 0 1px rgb(0 0 0 / 12%), 0 -1px 1px rgb(0 0 0 / 12%);
    z-index: -1;
    opacity: .05
}

.overview_section .high li:nth-child(1):before {
    content: '3 & 5 BHK'
}

.overview_section .high li span {
    font-size: 18px;
    display: block;
    font-weight: 400;
    color: #fff;
    background: #262626;
    line-height: 20px;
    padding: 8px 15px;
    margin-top: 10px
}

.overview_section .high li:not(:first-child) {
    margin-left: 40px
}

.price_section {
    padding-top: 150px
}

.price_section .right_col p {
    margin: 0;
    font-size: 17px;
    letter-spacing: 1px;
    color: #fff
}

.price_section .card {
    padding: 60px 40px;
    background: #000;
    border: 1px solid rgba(255 255 255 / 10%);
    border-radius: 0;
    box-shadow: 10px 10px 40px rgb(0 0 0 / 6%);
    overflow: hidden;
    margin: 15px 0;
    transition: all 200ms ease-in-out
}

.price_section .card:after {
    position: absolute;
    content: '';
    background: url(../assets/price_bg.webp) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    transition: all 200ms ease-in-out
}

.price_section .card .patch {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 150px
}

.price_section .card .patch img {
    transform: rotate(30deg)
}

.price_section .card .sold_out_patch {
    position: absolute;
    max-width: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9
}

.price_section .card.active:after {
    opacity: 1;
    transition: all 200ms ease-in-out
}

.price_section .card.active {
    background: var(--brown);
    color: #fff
}

.price_section .card.active .l {
    color: #fff
}

.price_section .card.active .btn {
    background: #000;
    color: #fff !important
}

.price_section .card:before {
    position: absolute;
    content: '';
    height: 150px;
    width: 150px;
    right: -150px;
    bottom: -150px;
    background: #fecc15;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    transition: all 300ms ease-in-out;
    z-index: 1
}

.price_section .card.active {
    border: none
}

.price_section .card.active:before {
    right: 0;
    bottom: 0;
    background: #fecc15
}

.price_section .card .data {
    position: relative;
    z-index: 1;
    color: #fff
}

.price_section .card .icon {
    font-weight: 700;
    font-size: 200px;
    position: absolute;
    top: -40px;
    opacity: .03;
    line-height: 120px;
    margin: 0;
    left: -30px
}

.price_section .card .typo {
    font-size: 20px;
    font-weight: 400
}

.price_section .card .price {
    font-size: 32px;
    width: fit-content;
    text-align: center;
    margin: 0;
    font-weight: 600
}

.price_section .card .price span {
    font-size: 30px;
    font-weight: 400
}

.price_section .card ul {
    margin: 20px 0 30px
}

.price_section .card .l {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 2px;
    color: var(--golden)
}

.price_section .card .r {
    font-weight: 400;
    font-size: 20px
}

.price_section .card .btn {
    width: max-content
}

.price_section .card .btn.disabled {
    cursor: auto
}

.offer_section {
    padding: 0
}

.offer_section .carousel-inner {
    overflow: visible
}

.offer_section .carousel-inner img {
    overflow: auto
}

.offer_section .heading {
    margin-bottom: 60px
}

.offer_section .image_col {
    max-width: 30%;
    flex: 0 0 30%;
    position: relative
}

.offer_section .image_col:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(0 0 0 / 30%)
}

.offer_section .image_col .left_texts {
    position: absolute;
    bottom: 30px;
    left: 30px;
    content: ''
}

.offer_section .image_col .builder_logo {
    max-width: 200px
}

.offer_section .image_col .possession {
    color: #fff;
    font-size: 44px;
    font-weight: 400;
    background: rgba(0 0 0 / 50%);
    padding: 5px 20px;
    margin-top: 20px
}

.offer_section .image_col .right_texts {
    position: absolute;
    bottom: 30px;
    right: 30px;
    content: ''
}

.offer_section .image_col .title {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    background: rgba(0 0 0 / 50%);
    padding: 5px 20px;
    margin-top: 20px;
    letter-spacing: 1px;
    display: table;
    margin-left: auto
}

.offer_section .image_col .price {
    color: #333;
    font-size: 40px;
    font-weight: 600;
    background: var(--golden);
    padding: 5px 20px;
    margin-top: 10px;
    letter-spacing: 1px
}

.offer_section .content_col {
    background: var(--golden);
    padding: 60px;
    text-align: center;
    max-width: 40%;
    flex: 0 0 40%
}

.offer_section .content_col:before {
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    height: 15px;
    width: 30px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #fff
}

.offer_section .offer_logo {
    max-width: 220px;
    max-height: 80px;
    margin-bottom: 20px
}

.offer_section .subT {
    font-size: 45px;
    font-weight: 600;
    font-style: italic;
    line-height: 55px;
    margin-bottom: 30px;
    text-align: center;
    margin-left: -20px
}

.offer_section .subT span:nth-child(2) {
    margin-left: 100px;
    font-size: 28px;
    line-height: 35px;
    display: block
}

.offer_section .typo {
    display: flex;
    align-items: center;
    justify-content: center
}

.offer_section .typo .l {
    text-align: right;
    padding-right: 20px;
    position: relative
}

.offer_section .typo .l:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    height: 100%;
    width: 2px;
    background: rgba(0 0 0 / 20%)
}

.offer_section .typo .r {
    text-align: left;
    padding-left: 20px
}

.offer_section .typo h3 {
    font-size: 24px;
    margin: 0;
    line-height: 30px
}

.offer_section .typo span {
    display: block;
    font-size: 30px
}

.offer_section .enquire_btn {
    margin-top: 40px;
    color: #444;
    border-color: #666;
    font-size: 14px;
    padding: 10px 20px
}

.offer_section .offerImage {
    height: 100%;
    width: 100%;
    object-fit: cover
}

.amenities_section {
    position: relative;
    padding: 200px 0
}

.amenities_section:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0
}

.amenities_section .heading {
    margin-bottom: 80px;
    color: #fff !important;
    -webkit-text-fill-color: unset;
    -webkit-background-clip: unset;
    background: unset
}

.amenities_section ul {
    display: flex;
    flex-wrap: wrap
}

.amenities_section li {
    max-width: 25%;
    flex: 0 0 25%;
    padding: 15px
}

.amenities_section .image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -9;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out
}

.amenities_section .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%
}

.amenities_section li:first-child .image {
    opacity: 1;
    visibility: visible
}

.amenities_section .link {
    position: relative;
    font-size: 20px;
    text-decoration: none;
    color: #FFF;
    transition: opacity .3s ease-in-out;
    border: 1px solid rgb(255 255 255);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500
}

.amenities_section .single.active .link {
    background: #111214;
    color: #fff
}

.amenities_section .single.active .link+.image {
    opacity: 1;
    visibility: visible
}

.amenities_section .container.hover .link {
    opacity: .4
}

.amenities_section .single.active .link {
    opacity: 1
}

.floor_plans .left_col li {
    display: none
}

.floor_plans .left_col li.active {
    display: block
}

.floor_plans table {
    margin-bottom: 5px;
    color: #cfcfcf
}

.floor_plans p {
    color: #fff
}

.floor_plans th {
    font-weight: 500
}

.floor_plans .nav-tabs {
    border: none
}

.floor_plans .nav-tabs .nav-link {
    border: none;
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
    letter-spacing: .5px;
    font-size: 18px;
    padding: 2px 0;
    background: #fff0;
    text-transform: capitalize
}

.floor_plans .nav-tabs .nav-link.active {
    border-bottom: 3px solid var(--golden);
    background: #fff0
}

.floor_plans .nav-item:not(:last-child) {
    margin-right: 30px
}

.location_map {
    position: relative
}

.location_map a {
    position: relative;
    display: flex
}

.locationMapImg {
    max-height: 600px;
    width: 100%;
    object-fit: cover
}

.location_map .content {
    position: absolute;
    top: 100px;
    background: var(--golden);
    padding: 80px 50px;
    max-width: 35%
}

.location_map .heading {
    color: #fff !important;
    background: unset;
    -webkit-text-fill-color: unset;
    -webkit-background-clip: unset
}

.location_map ul {
    padding-left: 20px
}

.location_map li {
    font-size: 18px;
    list-style-type: circle;
    color: #fff
}

.location_map li:not(:last-child) {
    margin-bottom: 8px
}

.gallery_section {
    padding-top: 180px
}

.gallery_section p {
    color: #fff
}

.gallery_section .gallery_carousel {
    max-width: 80%;
    margin: auto
}

.gallery_section .owl-stage-outer {
    overflow: visible !important
}

.gallery_section .owl-item img {
    height: 600px;
    width: 100%;
    object-fit: cover
}

.gallery_section .item {
    position: relative
}

.gallery_section .item:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(0 0 0 / 40%)
}

.gallery_carousel .owl-dots {
    display: none
}

.gallery_carousel .owl-nav {
    margin: 0
}

.gallery_carousel .owl-nav button {
    height: 50px;
    width: 50px;
    position: absolute;
    top: 50%;
    left: -20%;
    background: rgb(26 26 36 / 50%) !important;
    margin: 0 !important;
    border-radius: 0 !important;
    transition: all 300ms ease-in-out
}

.gallery_carousel .owl-nav button.owl-next {
    left: unset;
    right: -20%
}

.gallery_carousel .owl-nav img {
    filter: invert(1);
    max-width: 15px
}

.gallery_carousel .owl-nav button:hover {
    background: var(--golden) !important
}

.gallery_carousel .owl-nav button:hover img {
    filter: unset
}

.gallery_section .image_row {
    margin-top: 40px
}

.gallery_section .single_col {
    margin: 15px 0
}

.gallery_section .single_col .single {
    position: relative
}

.gallery_section .single_col a {
    cursor: none
}

.gallery_section .single_col a:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background: rgba(0 0 0 / 40%);
    opacity: 0;
    transition: all 0.4s ease-in-out
}

.gallery_section .single_col a:hover:before {
    opacity: 1
}

.construction_section .nav-tabs {
    margin-bottom: 40px
}

.construction_section .single {
    margin: 10px 0
}

.construction_section .single a {
    display: inline-block;
    position: relative
}

.construction_section .single a:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background: rgba(0 0 0 / 50%);
    opacity: 0;
    transition: all 300ms ease-in-out
}

.construction_section .single a:hover:before {
    opacity: 1
}

.construction_section .single img {
    width: 100%
}

.construction_section .single h4 {
    background: #fc0;
    margin: 0;
    padding: 10px;
    font-size: 18px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.other_projects {
    background: #282828
}

.other_projects .heading {
    color: #fff
}

.other_projects .single {
    background: #fff;
    position: relative;
    height: 500px
}

.other_projects .single a {
    height: 100%;
    width: 100%;
    display: flex
}

.other_projects .single a:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient(180deg, rgba(0 0 0 / 40%), rgba(0 0 0 / 70%), rgba(0 0 0 / 90%));
    z-index: 1
}

.other_projects .single .box_patch {
    position: absolute;
    z-index: 10;
    max-width: 100px;
    left: 10px;
    top: -40px
}

.other_projects .single .free_offers {
    position: absolute;
    z-index: 1;
    right: 0;
    background: rgba(255 255 255 / 80%);
    padding: 8px 15px;
    border: 4px solid rgb(120 15 25 / 30%)
}

.other_projects .free_offers h5 {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3px
}

.other_projects .free_offers li {
    display: flex;
    align-items: center
}

.other_projects .free_offers .icon img {
    width: 18px;
    height: 18px;
    object-fit: contain
}

.other_projects .free_offers .text {
    font-size: 12px;
    margin-left: 8px
}

.other_projects .single .thumbnail {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    object-fit: cover
}

.other_projects .logo {
    max-width: 200px;
    max-height: 100px;
    object-fit: contain
}

.other_projects .price {
    font-size: 40px;
    margin: 20px 0 10px;
    font-family: 'Roboto';
    font-weight: 700
}

.other_projects .content {
    position: absolute;
    z-index: 9;
    color: #fff;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px
}

.other_projects .content p {
    margin: 0;
    position: relative;
    max-width: fit-content;
    padding-left: 8px;
    font-size: 15px
}

.other_projects .content p:before {
    position: absolute;
    content: '';
    left: 0;
    top: 10px;
    height: 1px;
    width: 5px;
    background: #fff
}

.other_projects .add {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.other_projects .add li {
    max-width: calc(50% - 10px);
    flex: 0 0 calc(50% - 10px);
    margin: 5px 0
}

.other_projects .add li:nth-child(even) {
    text-align: right
}

.other_projects .add li:nth-child(even) p {
    margin-left: auto
}

.other_projects .add span {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600
}

.other_projects .single .btn_yellow {
    margin-top: 15px;
    font-size: 12px;
    padding: 7px 15px;
    height: auto
}

.other_projects .type p {
    font-size: 18px;
    font-weight: 500;
    color: var(--golden)
}

.footer_top {
    background: #111214;
    color: #fff
}

.footer_top .left_col p {
    font-size: 17px;
    letter-spacing: .5px;
    line-height: 26px
}

.footer_top .form_heading {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 30px
}

.footer_top button[type=submit] {
    width: 100%
}

.footer_top .right_col .box {
    position: relative
}

.footer_top .right_col .box:before {
    position: absolute;
    content: '';
    height: 50px;
    width: 50px;
    left: -35px;
    top: -30px;
    border-left: 6px solid var(--golden);
    border-top: 6px solid var(--golden)
}

.footer_top .call {
    display: flex;
    color: var(--golden);
    align-items: center;
    margin-bottom: 25px
}

.footer_top .call .l {
    line-height: 26px;
    font-size: 26px
}

.footer_top .call small {
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 15px;
    color: #dfdfdf
}

.footer_top .call .mobile_icon {
    width: 40px;
    height: 40px
}

footer {
    background: #000;
    padding: 10px 0;
    color: #fff;
    text-align: center
}

footer p {
    margin: 0;
    font-size: 14px;
    letter-spacing: 1px
}

footer strong {
    font-weight: 500
}

footer a {
    color: #fff !important;
    text-decoration: underline !important
}

.footer_top a.logo {
    margin-bottom: 40px;
    display: block
}

.backToTop {
    display: inline-block;
    background-color: #252531;
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 0;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000
}

.backToTop img {
    filter: invert(1)
}

.backToTop:hover {
    cursor: pointer;
    background-color: var(--golden)
}

.backToTop:active {
    background-color: var(--golden)
}

.backToTop:hover img, .backToTop:active img {
    filter: unset
}

.backToTop.show {
    opacity: 1;
    visibility: visible
}

.with-caption {
    cursor: zoom-in
}

.modal {
    padding-right: 0 !important
}

.modal .close {
    position: absolute;
    content: '';
    top: 20px;
    right: 20px;
    color: #fff;
    font-weight: 500;
    text-shadow: none;
    font-size: 40px
}

.modal .modal-content {
    border-radius: 0
}

.modal .modal-body {
    padding: 2px
}

.modal .modal-body .close {
    position: absolute;
    right: 0;
    top: 0;
    background: #252531;
    opacity: 1;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 30px;
    padding-bottom: 5px;
    z-index: 9
}

.modal .left_col {
    background: url(../assets/other-gallery/gallery2.webp) no-repeat center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: flex-end
}

#modal1 .left_col {
    background: none
}

.modal .left_col:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background: rgb(255 255 255 / 86%);
    left: 0;
    top: 0
}

#modal1 .left_col:before {
    display: None
}

.modal .left_col .content {
    position: relative;
    padding: 30px
}

.modal .left_col .location {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .5px;
    margin-bottom: 10px
}

.modal .left_col .possession {
    font-size: 18px;
    letter-spacing: .5px;
    text-transform: uppercase;
    background: var(--golden);
    padding: 6px 14px;
    max-width: fit-content;
    margin-top: 5px
}

.modal .left_col .type {
    font-size: 28px;
    margin-bottom: 20px
}

.modal .left_col .tag {
    background: rgb(30 39 49 / 85%);
    color: #fff;
    padding: 8px 25px;
    letter-spacing: 1px
}

.modal .left_col .tag h4 {
    margin: 0;
    font-size: 26px
}

.modal .left_col .title {
    color: #333;
    text-transform: uppercase;
    margin-top: 20px;
    background: rgb(255 255 255 / 80%);
    padding: 15px 30px;
    font-size: 20px;
    letter-spacing: 1px;
    width: 100%;
    font-family: 'Roboto_Bold'
}

.modal .project_logo {
    max-height: 160px;
    max-width: 160px;
    object-fit: contain;
    margin-bottom: 10px
}

.modal .right_col {
    padding: 40px;
    background: var(--brown)
}

#modal1 .right_col {
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    flex-direction: column
}

.modal .right_col h4 {
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #fff
}

.modal .form-control {
    min-height: 45px;
    background: #fff0;
    border: 2px solid rgba(255 255 255 / 15%);
    color: #fff
}

.modal .form-control::placeholder {
    color: #fff
}

.modal button[type=submit] {
    font-size: 15px;
    width: 100%
}

.modal form .btn {
    width: 100%;
    margin-top: 10px
}

.mobile-section {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    display: none;
    box-shadow: 0 -3px 15px rgb(0 0 0 / 10%)
}

.mobile-section .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 13px;
    padding: 7px 10px
}

.mobile-section .btn:not(:last-child):before {
    position: absolute;
    content: '';
    width: 1px;
    height: 16px;
    background-color: rgb(51 51 51 / 60%);
    display: block;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    left: unset
}

.nav-tabs {
    border: none
}

.nav-tabs .nav-item {
    margin-right: 20px
}

.nav-tabs .nav-link {
    background: #e1e1e1;
    color: #333;
    border: none;
    margin: 0;
    border-radius: 0;
    padding: 13px 30px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.nav-tabs .nav-link.active {
    background: var(--golden-btn-grad);
    color: var(--golden);
    font-weight: 600
}

.other_projects .single .shops_patch {
    max-width: 100px
}

.other_projects .single .possession_patch {
    max-width: 100px;
    right: 10px;
    left: unset
}

.sold-out {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.cursor {
    top: 0;
    width: 35px;
    height: 35px;
    position: fixed;
    pointer-events: none;
    transition: all 0.2s ease-in-out, top 0ms ease-in-out, left 0ms ease-in-out;
    z-index: 15;
    background: url(../assets/icons/zoom-hand.webp) no-repeat center center;
    background-size: contain;
    opacity: 0;
    visibility: hidden;
    filter: invert(1)
}

.cursor.show {
    opacity: 1;
    visibility: visible
}

section#floor-plans img {
    width: 100%;
    max-width: 600px
}

.footer_top .addresses {
    margin-top: 50px;
    padding-left: 20px
}

.footer_top .addresses li, .footer_top .addresses li a {
    color: #fff;
    letter-spacing: 1px;
    font-size: 16px
}

.footer_top .addresses li {
    margin-bottom: 5px;
    list-style-type: square
}

.footer_top .social {
    margin-top: 40px;
    display: block
}

.footer_top .social a {
    height: 40px;
    width: 40px;
    background: var(--golden);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 7px
}

.footer_top .social img {
    filter: invert(1);
    width: 20px
}

.banner_section .row.mx_-7 {
    display: grid
}

.banner_section .project_logo {
    max-width: 112px
}

.fax a {
    color: #fff
}

.call-us a {
    color: #fff
}

p.about_builder {
    margin-top: 15px
}

.banner_section .form_box .box {
    background: rgba(255 255 255 / 70%)
}

.banner_section .form_box .location, .banner_section .form_heading {
    background-color: #000;
    padding: 15px;
    text-align: center;
    font-weight: 500;
    font-size: 26px
}

.banner_section .form button[type=submit] {
    background-color: #8c946d;
    color: #fff !important
}

.banner_section .form .form-control {
    height: 52px !important
}

.overview_section .bg_image:before {
    background: rgb(233 233 233 / 90%)
}

.overview_section p {
    color: #212529
}

.overview_section .sub_heading, .overview_section .heading, .sub_heading {
    color: #212529
}

.sub_heading:before {
    background-color: #fecc15
}

section, .overview_section {
    background: #fff
}

.overview_section .high li {
    background-color: #fecc15;
    background-image: linear-gradient(180deg, transparent, rgba(255 255 255 / 80%))
}

.price_section .card:before {
    background: #fecc15
}

.amenities_section:before {
    background: linear-gradient(132deg, rgb(37 37 49 / 20%), rgb(76 61 0 / 60%))
}

.amenities_section .single.active .link {
    background: #fecc15;
    border-color: #fecc15;
    color: #212529
}

.floor_plans table, .floor_plans .nav-tabs .nav-link {
    color: #212529
}

.floor_plans .nav-tabs .nav-link.active {
    border-bottom: 3px solid #fecc15;
    background: #fff0
}

.location_map .content {
    background: #fecc15
}

.location_map li, .location_map .heading {
    color: #212529 !important
}

.footer_top {
    background: #1a1a24;
    color: #fff
}

.footer_top .social a {
    background: #fecc15
}

.footer_top .social img {
    filter: none
}

.footer_top .right_col .box:before {
    border-left: 6px solid #fecc15;
    border-top: 6px solid #fecc15
}

.footer_top .call {
    color: #fecc15
}

.btn_yellow {
    color: #000 !important;
    padding: 13px 30px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 200ms ease-in-out;
    color: #fecc15;
    background: linear-gradient(45deg, #fecc15, #FCF6BA, #fecc15)
}

.price_section .card.active {
    background: #fecc15;
    color: #fff
}

.banner_section .additional .content_col {
    background: #fecc15
}

.banner_section .content_col p, .banner_section .content_col h5 {
    color: #1a1a24
}

section {
    background-color: rgb(233 233 233 / 90%)
}

.price_section .card {
    padding: 60px 40px;
    background: #f1f1f1;
    border: 1px solid rgba(0 0 0 / 5%);
    border-radius: 0;
    box-shadow: 10px 10px 40px rgb(0 0 0 / 6%);
    overflow: hidden;
    margin: 15px 0;
    transition: .2s ease-in-out
}

.price_section .card .data {
    color: #212529
}

.price_section .card.active {
    background: #1a1a24;
    color: #fff;
    border: none
}

.price_section .card.active .data {
    /* color: #fff; */
}

.price_section .card.active .btn {
    background: #fecc15;
    color: #212529 !important
}

section#floor-plans, .gallery_section, .price_section {
    background: #fff
}

.banner_section .brochure_btn {
    margin-top: 20px
}

div#bannerCarousel {
    padding-bottom: 80px
}

.banner_section .content_box .price {
    text-shadow: 2px 2px 0 rgb(255 255 255 / 25%);
    color: #fecc15
}

.banner_section .content_box .typo {
    color: #fecc15
}

.banner_section .content_box .price {
    margin-top: 0;
    margin-bottom: 15px
}

.overview_section video {
    position: absolute;
    width: 100%;
    margin-top: 50px;
    height: calc(100% + 50px + 60px);
    top: 0;
    left: 0;
    object-fit: contain
}

.price_section .card .data .l {
    color: #212529 !important
}

.price_section .card.active .data .l {
    color: #fff !important
}

.footer_top .col-lg-6.left_col {
    top: -30px
}

@media (min-width: 768px) {
    .footer_top .col-lg-6.left_col {
        top: -30px
    }
}

@media (max-width: 767px) {
    .d_sm_none {
        display: block !important
    }

    .amenities_section li:last-child a {
        padding-left: 8px
    }
}
