@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&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');

:root {
    --heading: "Playfair Display", serif;
    --base: "Montserrat", sans-serif;
    --white-color: #fff;
    --black-color: #000;
    --theme-color: #0E3B5E;
    --theme-dark: #062e4d;
    --theme-medium: #F7941E;
    --theme-light: #1867a4;
    --yellow: #ffb508;
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 15px;
    color: var(--black-color);
    margin: 0;
    padding: 0;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p{
    font-family: var(--base);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--heading);
}

.sticky {
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: fixed !important;
    width: 100%;
    top: 0;
    z-index: 999;
}

.container-fluid {
    width: 98%;
}

.btn1 {
    border-radius: 3rem;
    border: 0;
    padding: 0.65rem 1.75rem;
    position: relative;
    display: inline-block;
    color: var(--black-color);
    background: var(--theme-color);
    outline: none;
    text-decoration: none;
    font-weight: 600;
}

.btn1:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.bg-yellow {
    background: var(--yellow);
}

.swiper-button-next:after, 
.swiper-button-prev:after{
    font-size: 1.25rem;
    color: var(--white-color);
}
.swiper-button-next, .swiper-button-prev{
    background-color: var(--theme-color);
    padding: 0.5rem 1.38rem;
    border-radius: 2rem;
}
.swiper-button-next{
    right: 10px;
}
.swiper-button-prev{
    left: 10px;
}
.title{
    letter-spacing: 1px;
    /* color: ; */
}
.callHead{
    display: none;
}
/* Header Panel */
/* ================================== */
nav {
    z-index: 99;
    font-family: var(--base);
}

.navbar-brand {
    padding: 0;
}

/* .navbar-brand img{
    width: 200px;
} */
.nav-link {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.nav-link:focus,
.nav-link:hover {
    color: #eab907;
}

/* Banner Panel */
/* ================================ */
.bannerPanel {
    position: relative;
    /* margin-top: 56px; */
    aspect-ratio: 21 / 9;   /* or 21 / 9 */
    width: 100%;
    overflow: hidden;
}

.bannerPanel:before {
    position: absolute;
    content: '';
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0) 50%
    );
    z-index: 9;
}

.bannerPanel img.banner-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* magic line */
    object-position: center;
}

.bannerContent {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    color: var(--white-color);
    z-index: 10;
    bottom: 10%;
}

.bannerContent h5,
.bannerContent h1 {
    font-family: var(--heading);
}

.bannerContent h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bannerContent p {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* About Panel */
/* ================================ */
.aboutPanel {
    position: relative;
    background: #daeaf2;
    padding: 3rem 0;
}
.aboutPanel .left img {
    height: 50px;
    }
.aboutPanel p {
    font-weight: 500;
    margin-bottom: 1rem;
}
.aboutPanel .bold-text {
    font-size: 0.9rem;
}
.walkthrough {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--white-color);
}

/* Pricing Panel */
/* ================================ */
.bold-text-2 {
    font-size: 1.75rem;
}
.pricing-right img{
    height: 40px;
}

/* Gallery Panel */
/* ================================ */
.galleryPanel {
    position: relative;
    background: #f2e9e9;
}

#building-slider {
    z-index: 1;
}

#building-slider .item {
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

#building-slider .center {
    z-index: 99;
}

#building-slider .center .item {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

#building-slider .owl-stage-outer {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media only screen and (max-width: 700px) {
    #building-slider .owl-stage-outer {
        height: 100%;
    }
}
.owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 94%;
    top: 50%;
    left: 3%;
    margin-top: -25px;
}
/* .owl-carousel .owl-nav button{
    width: 50px;
    height: 50px;
    background: var(--theme-color) !important;
    color: var(--white-color) !important;
    font-size: 1.5rem;
} */

/* Aminities */
/* ====================================== */
.aminities{
    position: relative;
    display: block;
    overflow: hidden;
    /* padding: 1.25rem; */
    border: 1px solid #ddd;
    text-align: center;
    height: 100%;
}
/* .aminities:before {
    position: absolute;
    z-index: 1;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    border-radius: 0.75rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
} */
.aminities p{
    font-weight: 500;
    margin-bottom: 0;
}
/* .aminities .arrowEffet {
    border-radius: 50%;
    position: absolute;
    transition: all .5s;
    height: 60px;
    width: 60px;
    background-color: rgba(237, 125, 33, 1);
    opacity: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    left: 50%;
    top: 0;
    margin-left: -30px;
}
.aminities:hover .arrowEffet {
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    opacity: 1;
    margin: 0;
} */

/* Location */
/* ================================ */
.locationPanel{
    background: #f2e9e9;
    position: relative;
}
.locationPanel ul{
    display: flex;
    flex-wrap: wrap;
}
.locationPanel ul li{
    padding: 0.5rem;
    align-items: center;
    text-align: center;
    border: 1px dashed #999;
    width: calc(16.33% - 12px);
    margin: 5px;
    border-radius: 0.5rem;
    line-height: 1.2;
}
.locationPanel ul li img{
    height: 100px;
    display: block;
    margin:0 auto 5px;
    border-radius: 0.25rem;
}
.locationPanel ul li b{
    display: block;
}

/* Plan */
/* =============================== */
.tabPlan{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.tabPlan li{
    padding: 0.65rem 1.25rem;
    position: relative;
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0 0.15rem;
    border: 1px solid var(--white-color);
    border-radius: 3rem;
}
.tabPlan li.ui-state-active {
    color: var(--theme-color);
    border:2px solid var(--theme-color);
}

.planBx{
    position: relative;
    display: block;
    overflow: hidden;
    border: 3px solid var(--yellow);
    padding: 1rem;
    border-radius: 0.5rem;
    background: var(--white-color);
}
/* .planBx:before {
    position: absolute;
    z-index: 1;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    -webkit-backdrop-filter: blur(1.15px);
    backdrop-filter: blur(1.15px);
} */
.planBx h3{
    position: absolute;
    z-index: 1;
    bottom: 30px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 1.25rem;
}
.planBx .arrowEffet {
    position: absolute;
    transition: all .5s;
    background-color: rgba(237, 125, 33, 1);
    opacity: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    color: #fff;
    left: 50%;
    top: 0;
    margin-left: -70px;
    border-radius: 3rem;
    font-weight: 600;
}
.planBx:hover .arrowEffet {
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    opacity: 1;
    margin: 0;
}


/* Footer */
/* ========================== */
footer{
    position: relative;
    padding: 3rem 0;
    background: var(--theme-dark);
    color: var(--white-color);
}
.footmenu a{
    margin: 0 10px;
    font-size: 12px;
}

.btn-close {
    position: absolute;
    right: -0.5em;
    top: -0.5em;
    padding: 0.5em;
    outline: none;
    box-shadow: none;
    border-radius: 2rem;
}
.getquoteModal .modal-content {
    border: 0;
    border-radius: 0;
}

.getquoteModalPanel {
    display: flex;
    justify-content: center;
    border-radius: 0.25rem;
}
.form-control {
    border-color: #ddd;
    min-height: 44px;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.form-select {
    width: 80px;
    border-color: #ddd;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.form-control:hover,
.form-control:focus,
.form-select:hover,
.form-select:focus {
    border-color: var(--theme-color);
    box-shadow: none;
}

.sidebtn{
    position: fixed;
    right: 0;
    bottom: 45%;
    z-index: 999;
}

.whatsapp{
    position: fixed;
    bottom: 20px;
    right: 5px;
    z-index: 999;
    animation: animate 2s linear infinite;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .4);
    border-radius: 100%;
}
.whatsapp img{
    width: 50px;
}
@keyframes animate { 
    0% { 
        transform: scale(1.05); 
    } 
    50% { 
        transform: scale(0.9); 
    } 
    0% { 
        transform: scale(1.05); 
    } 
} 



/* Thank You */
/* ============================== */
.thankyou{
    background: url(../images/thankyou.jpg) center no-repeat;
}
.thankMain{
    display: inline-flex;
    width: 100%;
    height: 100vh;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--white-color);
    /* background: rgba(0, 0, 0, 0.65); */
}
.thankMain h1{
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: 'Thick Brush';
    letter-spacing: 5px;
}
.pulse {
    animation: pulse-animation 2s infinite;
  }
  
@keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(255, 181, 7, 0.42);
    }
    100% {
      box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
}

.pulse2 {
    animation: pulse-animation2 2s infinite;
  }
  
@keyframes pulse-animation2 {
    0% {
      box-shadow: 0 0 0 0px rgba(255, 181, 7, 0.42);
    }
    100% {
      box-shadow: 0 0 0 15px rgba(255, 181, 7, 0);
    }
}





.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.65);
}

.box {
    position: absolute;
    padding: 3rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white-color);
    color: var(--black-color);
    min-width: 500px;
}
.closeBtn{
    background: #f00;
    color: #fff;
    position: absolute;
    right: -0.5em;
    top: -0.5em;
    font-size: 1rem;
    padding: 0.25em 0.5em;
    outline: none;
    box-shadow: none;
    border-radius: 3rem;
}



.stick_container{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    top: 0;
    left: 0;
    z-index: 9999;
}
.stick_popup {
    min-width: 500px;
    background: var(--white-color);
    -webkit-animation: zoomin 0.7s;
    animation: zoomin 0.7s;
}

.stick_content {
    padding: 3rem;
    position: relative;
}

.stick_close {
    background: #f00;
    color: #fff;
    position: absolute;
    right: -0.5em;
    top: -0.5em;
    font-size: 1rem;
    padding: 0.25em 0.5em;
    outline: none;
    box-shadow: none;
    border-radius: 3rem;
    cursor: pointer;
    z-index: 999;
}
.social-icon-fix a img {
    height: 35px;
}
.social-icon-fix {
    position: fixed;
    right: 2%;
    bottom: 2%;
    z-index: 999;
}

@-webkit-keyframes zoomin {

    0% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(1.04);
        -ms-transform: scale(1.04);
        transform: scale(1.04);
        opacity: 1;
    }
  
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
@-ms-keyframes zoomin {

    0% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(1.04);
        -ms-transform: scale(1.04);
        transform: scale(1.04);
        opacity: 1;
    }
  
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    
}
@keyframes zoomin {

    0% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(1.04);
        -ms-transform: scale(1.04);
        transform: scale(1.04);
        opacity: 1;
    }
  
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.pulse3 {
    animation: pulse-animation3 1.5s infinite;
  }
  
@keyframes pulse-animation3 {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
}
.pulse4 {
    animation: pulse-animation4 1.5s infinite;
  }
  
@keyframes pulse-animation4 {
    0% {
      transform: scale(1.1);
    }
    50% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.1);
    }
}
.second-one{display: none;}
/* Media query */
/* @media (max-width:1440px) {
    
} */
@media (min-width:993px)and (max-width:1367px) {
    body{font-size: 80%;}
    .navbar-brand > img {width: 150px;}
    .bannerContent h1 {font-size: 3.5rem;margin-bottom: 0.5rem;}
    .bannerContent p {font-size: 1.05rem;}
    .aboutPanel .left img {height: 45px;}
    .aboutPanel .bold-text {font-size: 1.25rem;}
    .locationPanel ul li img {height: 82px;}
    .tabPlan li {padding: 0.35rem 1rem;font-size: 1.05rem;}
    .nav-link {font-size: 13px;}
    .bold-text-2 {font-size: 1.5rem; }
}
@media (max-width: 800px) {
    body{font-size: 90%;}
    .banner-main-img{background-size: cover !important; }
    .bannerPanel{margin-top: 56px; aspect-ratio: 2 / 3;}
    .bannerContent{min-height: 450px;}
    .bannerContent h1 {font-size: 2.25rem;margin-bottom: 1.5rem;}
    .bannerContent h5 {font-size: 1rem; margin-bottom: 0.75rem;}
    .bannerContent p {font-size: 1rem; margin-bottom: 1.5rem;}
    .aboutPanel .left img {height: 40px;}
    .aboutPanel .bold-text {font-size: 14px;}
    .aboutPanel p span {font-size: 10px; line-height: 1.1; display: inline-block;}
    .first-one {display: none;}
    .second-one {display: block;}
    .walkthrough {right: 16px;}
    .pricing-right img{height: 20px;}
    .bold-text-2 {font-size: 1rem; }
    .price h4 {font-size: 1.25rem;}
    .pricing-right .price-icon-text{line-height: 1;}
    .pricing-right .price-icon-text > span {font-size: 10px;display: inline-block;line-height: 1.1;}
    .locationPanel .location-site img{display: none;}
    .locationPanel .location-site ul li{font-size: 13.5px;display: flex;flex-direction: column;justify-content: center; text-align: center;}
    .locationPanel .location-site ul li b{margin-bottom: 0.15rem;}
    .tabPlan li {padding: 0.35rem 1rem;font-size: 1.05rem;}
    .first-one p{font-size: 12px;}
    footer{text-align: center;}
    .callHead{
        width: 30px;
        height: 30px;
        background: #0d7fa9;
        text-align: center;
        line-height: 30px;
        color: #fff;
        border-radius: 100%;
        display: inline-block;
    }
}
@media (max-width:480px){
    /* .banner-main-img {height: 90vh;object-fit: cover;object-position: 30%;} */
    .bannerContent{min-height: 550px;}
    .bannerContent h1 {font-size: 2.25rem;margin-bottom: 1.5rem;}
    .bannerContent h5 {font-size: 1.05rem; margin-bottom: 0.75rem;}
    .bannerContent p {font-size: 1.125rem; margin-bottom: 1.5rem;}
    .navbar-brand > img { height: 40px;}
    .sidebtn {top: 70%;}
    .sidebtn > img {width: 40px;}
    .aboutPanel p span { font-size: 10px; margin-top: 3px;}
    .aboutPanel .change-position {flex-direction: column-reverse;}
    .first-one {display: flex;}
    .second-one {display: none;}
    .price h4 {font-size: 1.5rem;}
    .amenities h3{font-size: 1rem;}
    .tabPlan li {padding: 0.35rem 0.75rem;font-size: 13px;}
    .aminities .arrowEffet {transition: all .5s;height: 40px;width: 40px;font-size: 1rem;}
    .footmenu a{margin: 0 5px;font-size: 12px;}
    .owl-dots {display: none !important;}
}
@media (max-width:390px) {
    .tabPlan li {padding: 0.35rem 0.65rem; font-size: 12px;}
}