@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Flex:opsz,wght@8..144,100;8..144,200;8..144,300;8..144,400;8..144,500;8..144,600;8..144,700;8..144,800;8..144,900;8..144,1000&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css");

:root {
    --primary-color: #062842;
    --secondary-color: #b97562;
    --primary-font: 'roboto', sans-serif;
    --secondary-font: 'Montserrat', sans-serif;
}

body {
    font-family: var(--primary-font);
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    line-height: 1.875;
}

a{
    text-decoration: none;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.container-fluid{
        padding: 0 60px;
        position: relative;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 400;
    line-height: 30px;
    text-transform: uppercase;
    border: 1px solid transparent;
    padding: 7px 28px;
    font-family: var(--primary-font);
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 20px;
}
.btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn i{
    margin-right: 5px;
}

h1, h2, h3, h4, h5, h6, a, span {
    font-family: var(--secondary-font);
}

.owl-dots {
    display: none;
}

img{
    max-width: 100%;
}

.round-arrow.owl-carousel .owl-nav button.owl-next,.round-arrow.owl-carousel .owl-nav button.owl-prev {
    width: 45px;
    height: 45px;
    position: absolute;
    bottom: 50px;
    display: block!important;
    background: rgb(6 40 66 / 60%);
    margin-top: -17px;
    border-radius: 100%;
}

.round-arrow.owl-carousel .owl-nav button.owl-prev {right: 121px;}

.round-arrow.owl-carousel .owl-nav button.owl-next {
    right: 50px;
}

.round-arrow.owl-carousel .owl-nav button.owl-next i,.round-arrow.owl-carousel .owl-nav button.owl-prev i {
    font-size: 20px;
    padding: 0!important;
    color: #fff;
    position: relative;
    top: 1px
}

.round-arrow.owl-carousel .owl-nav button.disabled {
    display: none!important
}

.home-slider-sec{
    height: 100vh;
    position: relative;
}


.home-slider-sec .owl-carousel,
.home-slider-sec .owl-stage-outer,
.home-slider-sec .owl-stage,
.home-slider-sec .owl-item,
.home-slider-sec .item
{
    height: 100%;
}

.home-slider-sec img,
.home-slider-sec video{width: 100%;height: 100%;object-fit: cover;}


.banner-content {
    position: absolute;
    bottom: auto;
    top: 0;
    width: auto;
    height: 100%;
    left: 8%;
    display: flex;
    align-items: center;
    z-index: 9;
    color: #fff;
}

.banner-content h1 {
    color: #fff;
    margin: 0 0 10px;
    text-transform: capitalize;
    font-size: 40px;
    line-height: 1.2;
}



.banner-content h2 {
    font-size: 20px;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 10px;
}
.banner-content .content {
    padding: 40px;
    background: #00000052;
    max-width: 450px;
    border-radius: 5px;
}

.banner-content .price {
    background: var(--primary-color);
    display: inline-block;
    padding: 8px 35px;
    border-radius: 50px;
    margin-top: 15px;
    position:relative;
    border: 2px solid #fff;
}

.banner-content .price:before {
    content: '';
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    border: 2px dotted #FFF;
    position: absolute;
    opacity: 0.1;
    z-index: 0;
    border-radius: 50px;
}




.bottom-fixed-header {
     position: fixed;
     bottom: 0;
     z-index: 99;
     left: 50%;
     background: #000;
     box-shadow: 0 0 20px 0 rgb(0 0 0 / 28%);
     width: 750px;
     transform: translateX(-50%);
     /* border-radius: 5px 5px 0 0; */
     transition: all 0.4s cubic-bezier(0.65, 0.01, 0, 1.13);
 }
 .bottom-fixed-header ul {
    display: flex;
}
.bottom-fixed-header ul li {
    text-align: center;
    position: relative;
    flex: 1;
}
.bottom-fixed-header ul li a {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.4px;
    padding: 14px 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    justify-content: center;
    min-width: 150px;
    font-family: var(--primary-font);
    line-height: 1;
    color: #FFF;
}
.bottom-fixed-header ul li i {
    font-size: 20px;
}

.bottom-fixed-header ul li:hover a {
    background: #062842;
    color: #FFF;
}

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

span.section-tagline {
     color: #9d9d9c;
     display: flex;
     font-family: var(--primary-font);
     line-height: 24px;
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 2px;
     text-transform: uppercase;
 }

 span.section-tagline:after {
    display: block;
    content: "";
    height: 1px;
    width: 120px;
    background-color: #9d9d9c;
    margin-top: 11px;
    margin-left: 10px;
}

h1 {
    font-size: 34px;
    line-height: 34px;
    margin: 5px 0 40px;
    text-transform: uppercase;
    font-weight: 600;
    color: #062842;
}

.theme_btn span.icon {
     width: 40px;
     height: 40px;
     /* background: #062842; */
     display: flex;
     color: #FFF;
     border-radius: 50%;
     justify-content: center;
     align-items: center;
     transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 }

 .theme_btn span {
     z-index: 1;
     position: relative;
 }

 .theme_btn {
     display: flex;
     align-items: center;
     gap: 8px;
     text-transform: uppercase;
     font-weight: 700;
     color: #062842;
     position: relative;
     padding-right: 20px;
     width: fit-content;
 }

 .theme_btn:before {
     content: '';
     width: 40px;
     height: 40px;
     position: absolute;
     top: 0;
     left: 0;
     background: #062842;
     border-radius: 50px;
     transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
     z-index: 0;
 }

 .theme_btn:hover {
     color: #FFF;
 }

 .theme_btn:hover:before,
 .theme_btn.big:hover:before {
     width: 100%;
 }

 .color-bg {
    background-color: var(--secondary-color);
}

.color-bg span.section-tagline {
    color: #fff;
}

.color-bg h1 {
    color: #fff;
}

.color-bg span.section-tagline:after {
    background-color: #fff;
}


.highlights-content li {
    position: relative;
    margin-bottom: 1px;
    display: flex;
    align-items: center;
    color: #fff;
    background: var(--primary-color);
    border-radius: 5px;
    padding: 10px 25px;
}


.gallery-section{
    position: relative;
}
.gallery-section:before {
    content: '';
    width: 80%;
    max-width: 1400px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18%;
    background: #f7f2ec;
    top: 0;
    z-index: 0;
    border-radius: 5px;
}


.gallery-section .owl-item img {
     transform: scale(0.9);
     transition: all 0.5s ease;
     opacity: .6;
 }

 .gallery-section .owl-item.active.center img {
     transform: scale(1);
     opacity: 1;
 }

 .gallery-img {
    height: 320px;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gray-bg {
    background: #fcf5f3;
}

.price-box {
    background: #fff;
    border-radius: 10px;
    padding: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-box .price {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 0;
}

.price-box p {
    
}

.price-box .shape {
    color: var(--secondary-color);
    border-top: 2px solid var(--secondary-color);
    display: block;
    width: 100%;
    border-bottom: 2px solid var(--secondary-color);
    padding: 5px 10px;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.floor-plan {
    border: 1px solid #000;
    height: 235px;
    position: relative;
}

.floor-plan img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floor-plan .overlay-content {
    position: absolute;
    bottom: -100%;
    background: #062842e6;
    padding: 15px;
    text-align: center;
    left: 0;
    right: 0;
    transition: .5s ease;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    font-family: var(--secondary-font);
    cursor: pointer;
    align-items: center;
}

.floor-plan:hover .overlay-content{
       bottom: 0; 
}

.floor-plan .theme_btn {
    color: #fff;
}

.amenities-box {
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #fff;
    height: 380px;
    width: 100%;
    position: relative;
    transition: transform .2s;
    box-shadow: 0px 0px 4px #000000;
    transition: width .2s ease-in-out;
}

.amenities-box .txt {
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, #fff0, #000);
    padding: 15px;
    left: 0;
    right: 0;
    transition: .5s ease;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    text-transform: uppercase;
    align-items: center;
    /* height: 100%; */
    font-size: 18px;
    }
    

.amenities-box .icon {
    height: 100%;
    display: block;
    width: 100%;
}

.amenities-box .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footersection{
    color:#fff!important
}

.footersection a,.footersection p {
    color:#fff!important
}

ul.listing {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
ul.listing ul li {
    margin: 10px 0 !important;
    position: relative;
    padding-left: 25px;
    font-weight: 400;
    width: 100%;
}
ul.listing li:before {
    content: '';
    width: 15px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 10px;
    background: #062842;
    border-radius: 50px;
}

.site-address {
    background: #fff;
    padding: 40px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-address p {
    display: flex;
}

.site-address p i {
    width: 30px;
}

.site-address h3 {
    font-weight: 600;
}

.site-address p span {
    width: calc(100% - 30px);
}

.cp-logo {
    max-width: 200px;
    margin-bottom: 20px;
}
footer {
    background: var(--primary-color);
    padding: 50px 0 80px;
}

p.disclaimers {
    color: #fff;
    font-size: 12px;
    font-family: var(--secondary-font);
}

.footer-detail {
    text-align: center;
    border-top: 1px solid #727272;
    padding-top: 15px;
}

.footer-detail a {
    color: #fff;
}

.enqModal .modal-content {
    background-color:  var(--secondary-color);
    border: 0;
}

.enqModal .modal-body {
    padding: 50px;
}

.enqModal .modal-content:before {
    content: '';
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    border: 2px dotted #FFF;
    position: absolute;
    opacity: 0.1;
    z-index: 0;
}

.enqModal a.btnClose {
    color: #fff;
    position: absolute;
    background: #000;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: -15px;
    top: -15px;
    border-radius: 50px;
    font-size: 13px;
}

.enqModal span.section-tagline {
    color: #fff;
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 15px;
}

.enqModal span.section-tagline:after {
    background-color: #fff;
}

.enqModal h3 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 15px;
}

.enqModal .modal-dialog {
    max-width: 480px;
}
.input-group-text {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.error {
    background: #ffe6e6;
    margin-top: 5px;
    padding: 5px 10px;
    border-radius: 5px;
    color: red;
    display: flex;
    align-items: center;
    font-size: 13px;
    border: 1px solid red;
}

.error img {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

@media(max-width:767px){

body{
    font-size: 14px;
}
.home-slider-sec img{}

.home-slider-sec .owl-carousel {
    height: auto;
}

.banner-content {
    position: static;
    margin-top: 11px;
}

.home-slider-sec {height: auto;}

.banner-content .content {
    background: #00000096;
}

.m-p-b-15{
    padding-bottom: 30px !important;
}

    .bottom-fixed-header {
    width: 100%;
}

.bottom-fixed-header ul li a {
    flex-direction: column;
    gap: 5px;
    min-width: auto;
    font-size: 11px;
    padding: 14px 5px;
}

.round-arrow.owl-carousel .owl-nav button.owl-next, .round-arrow.owl-carousel .owl-nav button.owl-prev {
    right: 20px;
    bottom: 80px;
}

.round-arrow.owl-carousel .owl-nav button.owl-prev {
    right: 76px;
}

.sec-padding {
    padding: 50px 0;
}

.price-box {
    margin-bottom: 15px;
}
h1 {
    font-size: 30px;
    margin: 5px 0 30px;
}
.site-address {
    padding: 15px;
}
.enqModal .modal-dialog {
    max-width: 90%;
    margin: 0 auto;
}

.enqModal .modal-body {
    padding: 30px;
}

.enqModal span.section-tagline {
    font-size: 16px;
}
.enqModal h3 {
    font-size: 12px;
}
.banner-content .content {
    padding: 20px;
}

.banner-content h1 {
    font-size: 25px;
}

.banner-content h2 {
    font-size: 14px;
}

.banner-content .price {
    font-size: 14px;
    padding: 8px 20px;
}
}