/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear .0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

.fw-thin {
    font-weight: 100;
}

.text-uppercase {
    font-size: 14px;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.link-hover {
    transition: 0.5s;
}

.link-hover:hover {
    color: var(--bs-primary) !important;
}

.img-zoomin {
    transition: 0.5s;
}

.img-zoomin:hover {
    transform: scale(1.1);
}

/*** Topbar Start ***/
.sticky-top {
    transition: 0.5s;
    background: var(--bs-white);
}

.topbar {
    padding: 10px 0;
}

.topbar .top-info {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link {
    font-family: "Roboto Slab", serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

#datetime-display {
    font-family: "Roboto Slab", serif;
    font-size: 15px;
    font-weight: 400;
}

@media (max-width: 1400px) {
    .sticky-top .top-link {
        display: none;
    }
}

.topbar .top-link a {
    font-size: medium;
    font-weight: 400;
    font-family: "Roboto Slab", serif;
    letter-spacing: 1px;
}

.topbar .top-link a small:hover {
    color: var(--bs-secondary) !important;
    transition: 0.5s;
}

.topbar .top-link a small:hover i {
    color: var(--bs-primary) !important;
}

#note {
    position: relative;
    animation: noteAnimate 10s infinite;
    animation-timing-function: ease-in-out;
    display: flex;
    align-items: center;
}

@keyframes noteAnimate {
    from {
        left: -735px;
    }

    to {
        left: 735px;
    }
}

/*** Topbar End ***/
/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    font-size: 19px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top.bg-white .navbar .navbar-nav .nav-link:hover,
.sticky-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        font-weight: 400;
        font-family: 'Fredoka', sans-serif;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

@media (min-width: 1200px) {
    .navbar .navbar-collapse .border-top {
        border-top: none !important;
    }
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);
}

/*** Navbar End ***/
/*** Features Start ***/
.features {
    width: 100%;
    background: linear-gradient(rgba(26, 125, 255, 0.5), rgba(255, 255, 255, 0.3));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*** Features End ***/
/*** Top News Start ***/
.news-2 h3 {
    position: relative;
}

.news-2 h3::after {
    content: "";
    line-height: 1.3rem;
    background: var(--bs-secondary);
    position: absolute;
    width: 68%;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    right: 0;
    opacity: 0.2;
}

/*** Top News End ***/
/*** Latest News Start ***/
.latest-news .latest-news-carousel.owl-carousel {
    position: relative;
}

.latest-news .latest-news-carousel.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -65px;
    right: 70px;
    font-size: 20px;
    padding: 2px 20px;
    transition: 0.5s;
    margin-right: 10px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-dark);
    border-radius: 20px;
}

.latest-news .latest-news-carousel.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    right: 0;
    font-size: 20px;
    margin-left: 10px;
    padding: 2px 20px;
    transition: 0.5s;
    border: 1px solid var(--bs-primary);
    color: var(--bs-dark);
    border-radius: 20px;
}

.latest-news .latest-news-carousel.owl-carousel .owl-nav .owl-prev:hover,
.latest-news .latest-news-carousel.owl-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
    border-radius: 10px;
}

/*** Latest News End ***/
/*** Whats New Start ***/
.populer-news .whats-carousel.owl-carousel {
    position: relative;
}

.populer-news .whats-carousel.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -80px;
    right: 70px;
    font-size: 20px;
    padding: 2px 20px;
    transition: 0.5s;
    margin-right: 10px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-dark);
    border-radius: 20px;
}

.populer-news .whats-carousel.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: -80px;
    right: 0;
    font-size: 20px;
    margin-left: 10px;
    padding: 2px 20px;
    transition: 0.5s;
    border: 1px solid var(--bs-primary);
    color: var(--bs-dark);
    border-radius: 20px;
}

.populer-news .whats-carousel.owl-carousel .owl-nav .owl-prev:hover,
.populer-news .whats-carousel.owl-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
    border-radius: 10px;
}

.populer-news .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.lifestyle .lifestyle-item {
    position: relative;
    overflow: hidden;
}

.lifestyle .lifestyle-item img {
    transition: 0.5s;
}

.lifestyle .lifestyle-item:hover img {
    transform: scale(1.2);
}

.lifestyle .lifestyle-item .lifestyle-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

/*** Whats New End ***/
/*** Banner Section start ***/
.banner-2 {
    position: relative;
}

.banner-content-2 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(rgba(26, 125, 255, 0.7), rgba(255, 255, 255, 0.7));
    z-index: 2;
}

/*** Banner Section End ***/
/*** Footer Start ***/
.footer button:hover {
    background: var(--bs-white) !important;
    color: var(--bs-primary) !important;
}

.footer .footer-item-1 .line-h {
    line-height: 28px;
}

.footer .footer-item-1 a i {
    transition: 0.5s;
}

.footer .footer-item-1 a:hover i {
    color: var(--bs-primary) !important;
}

.footer .footer-item-3 a {
    line-height: 38px;
}

.footer .footer-item-2 a {
    transition: 0.5s;
}

.footer .footer-item-2 a:hover {
    color: var(--bs-primary) !important;
}

.footer .footer-item-3 a {
    transition: 0.5s;
}

.footer .footer-item-3 a:hover {
    color: var(--bs-secondary) !important;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    object-fit: contain;
    height: auto;
}

/*** Footer End ***/
.single-property .container--property-images img {
    border-radius: 10px;
}

.single-property .section--header .fa-star,
.single-property .section--header .fa-star-half {
    color: #fcbf02;
}

.single-property .title-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Adjust spacing between title and stars */
}

.single-property .title-rating h1 {
    margin: 0;
}

.single-property .section--content .panel {
    border-bottom: 1px solid #cbd4d5;
    margin-bottom: 26px;
    padding: 0 0 26px;
}

.single-property .section--content aside {
    margin-bottom: 26px;
    position: sticky;
    top: 106px;
}

.single-property aside {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 4px 4px 30px rgba(0, 0, 0, .11);
}

.single-property aside header {
    background-color: rgba(0, 32, 84, 0.7);
    border-radius: 10px 10px 0 0;
    color: #fff;
    padding: 16.25px 26px;
}

.single-property aside header .heading {
    color: #fff;
}

.single-property .btn-outline-primary {
    font-size: 18px;
    color: rgba(0, 32, 84, 1);
    border-color: rgba(0, 32, 84, 0.7) !important;
}

.single-property aside .aside--main .btn-primary {
    font-size: 18px;
    background-color: rgba(0, 32, 84, 0.7) !important;
    border-color: rgba(0, 32, 84, 0.7) !important;
}

.single-property aside .aside--main .btn-primary:focus,
.single-property aside .aside--main .btn-primary:hover {
    background-color: #0064bc !important;
    border-color: #0064bc !important;
}

.single-property .map--holder {
    border-radius: 10px;
}

.single-property .mapid {
    border: 1px solid #dee2e6;
}

.section--header .fa-star {
    color: #fcbf02;
}

.single-property .after--heading {
    font-size: 16px;
    display: flex;
    align-items: center;
}

.single-property .after--heading .s--small {
    font-size: 3px;
    margin: 0 6px;
}

.single-property .after--heading a {
    color: rgba(102, 102, 102, 0.9);
    text-decoration: underline;
}

.single-property .after--heading .fa-map-marker-alt {
    color: #FF0000;
}

.single-property .after--heading a:focus,
.single-property .after--heading a:hover {
    color: rgba(102, 102, 102, 1);
    text-decoration: none;
}

.single-property .owl-carousel {  
    position: relative;
}

.single-property .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none; 
    z-index: 10;
    padding: 0 10px;
}

.single-property .owl-prev,  .single-property .owl-next {
    background-color: rgba(0, 0, 0, 0.5); 
    color: #fff;
    padding: 6px 10px;
    border-radius: 50%;
    pointer-events: all;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-property .wrap-video {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.single-property #video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.single-property #video-background video,
.single-property #video-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (min-width:1200px) {

    .hamburger,
    .kebab-toggler,
    .social-menu {
        display: none;
    }

    .for-mobile {
        display: none !important;
    }
}

/*
@media (min-width: 1200px) and (max-width:1399.98px) {
  .navbar-brand img, .footer img.footer-logo {
    max-width: 210px;
    height: auto;
    object-fit: contain;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 16px;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .nav-btn .nav-link {
    font-weight: 16px;
  }
}
@media (min-width: 1200px) and (max-width:1299.98px) {
    .navbar .navbar-brand {
        min-width: 200px;
        max-width: 200px;
    }
    .navbar-brand img, .footer img.footer-logo {
        max-width: 200px;
        height: auto;
        object-fit: contain;
    }
}*/
@media only screen and (max-width:1440.98px) {
    .navbar-brand img {
        max-width: 240px;
    }
}

@media only screen and (max-width:1199.98px) {
    .sticky-top {
        top: 0 !important;
    }

    .navbar {
        min-height: 80px;
    }

    .navbar .navbar-brand {
        position: relative;
        height: 100%;
    }

    .navbar .navbar-brand img {
        position: absolute;
        transform: translateY(-50%);
        top: -50%;
        max-width: 260px;
    }

    .hamburger {
        padding: 10px 15px;
        display: inline-block;
        cursor: pointer;
        transition-property: opacity, filter;
        transition-duration: .15s;
        transition-timing-function: linear;
        font: inherit;
        color: inherit;
        text-transform: none;
        background-color: transparent;
        border: 0;
        margin: 0;
        overflow: visible;
        position: absolute;
        top: 48%;
        right: 15px;
        z-index: 999;
        transform: translateY(-50%);
        margin-top: 5px;
    }

    .hamburger-box {
        width: 32px;
        height: 21px;
        display: inline-block;
        position: relative;
    }

    .hamburger-inner {
        display: block;
        top: 50%;
        margin-top: -1.5px;
    }

    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        width: 32px;
        height: 3px;
        background-color: #0d4181;
        border-radius: 4px;
        position: absolute;
        transition-property: transform;
        transition-duration: .15s;
        transition-timing-function: ease;
    }

    .hamburger-inner::before,
    .hamburger-inner::after {
        content: "";
        display: block;
    }

    .hamburger-inner::before {
        top: -9px;
    }

    .hamburger-inner::after {
        bottom: -9px;
    }

    .hamburger--collapse .hamburger-inner {
        top: auto;
        bottom: 0;
        transition-duration: .13s;
        transition-delay: .13s;
        transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .hamburger--collapse .hamburger-inner::after {
        top: -18px;
        transition: top .2s .2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity .1s linear;
    }

    .hamburger--collapse .hamburger-inner::before {
        transition: top .12s .2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform .13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .hamburger--collapse.is-active .hamburger-inner {
        transform: translate3d(0, -9px, 0) rotate(-45deg);
        transition-delay: .22s;
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .hamburger--collapse.is-active .hamburger-inner::after {
        top: 0;
        opacity: 0;
        transition: top .2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity .1s .22s linear;
    }

    .hamburger--collapse.is-active .hamburger-inner::before {
        top: 0;
        transform: rotate(-90deg);
        transition: top .1s .16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform .13s .25s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .slide-out-nav {
        position: fixed;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 20px;
        padding: 20px;
        background-color: #ffffff;
        z-index: 999;
        visibility: hidden;
        opacity: 0;
        border: 0;
        transform: translateY(100%) perspective(1px);
        transition: height .8s ease-in-out;
        overflow-y: scroll;
        border: 0;
        border-radius: 0;
        text-align: center;
    }

    .slide-out-nav.nav-open {
        height: calc(100% - 80px);
        opacity: 1;
        transform: translateY(0) perspective(1px);
        visibility: visible;
        opacity: 1;
        padding-top: 30px !important;
        display: block !important;
    }

    .slide-out-nav .navbar-nav {
        width: 100%;
        padding-top: 30px;
    }

    .slide-out-nav .navbar-nav li {
        display: block;
        text-align: center;
        margin: 0;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 18px;
        padding: 12px 15px;
    }

    .slide-out-nav.fadeInDown {
        -webkit-animation-name: unset;
        animation-name: unset;
    }

    .social-menu {
        color: #ffffff;
        background: #0097a2;
        display: none;
        text-align: center;
        z-index: 9;
        padding-top: 10px;
    }

    .social-menu.menu-on {
        display: block;
        position: fixed;
        width: 100%;
        left: 0;
        top: 105px;
    }

    .social-menu li {
        position: relative;
        padding: 10px 40px;
    }

    .social-menu .contact-info {
        margin-bottom: 0;
    }

    .social-menu .contact-info strong {
        display: block;
        font-size: 18px;
        font-weight: 700;
        color: #ffffff;
    }

    .social-menu .contact-info span {
        color: #d5e2e3;
    }

    .social-menu .icon {
        color: #252c30;
    }

    .socmedia {
        margin-top: 15px;
        background-color: #252525;
        box-shadow: 0 0 10px 3px rgb(0 0 0 / 5%);
    }

    .socmedia .social-info {
        padding: 8px 15px;
    }

    .socmedia .social-info a {
        color: #ffffff;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        line-height: 14px;
        text-align: center;
        display: inline-block;
        background-color: #0097a2;
    }

    .socmedia .social-info a i {
        position: relative;
        top: 10px;
    }

    .nav-btn {
        margin-top: 10px;
    }

    .nav-item-wrap {}

    .navbar-expand-lg .navbar-nav {
        display: block;
        width: 100%;
        margin-top: 30px;
        /* position: relative;
        transform: translateY(-50%);
        top: 50%;*/
    }

    #header-carousel .display-1 {
        font-size: calc(1.625rem + 2.5vw);
    }

    .for-desktop {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .image-holder img {
        min-height: 600px;
        object-fit: cover;
        width: auto;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .footer-item img {
        max-height: 290px;
    }
}

@media (max-width: 991.98px) {
    .img-col {
        margin-top: 0;
    }

    .section-title {
        text-align: center;
    }

    .section-title::before {
        right: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .section-title::after {
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .section-title-inv {
        text-align: center;
    }

    .section-title-inv::before,
    .section-title-inv::after {
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .sticky-top .container-nav {
        width: 100%;
        max-width: 100%;
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

@media (max-width: 767.98px) {

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        border-radius: 3rem;
    }

    .footer-info {
        text-align: center;
    }

    .footer-info p i {
        display: block;
        margin-right: 0 !important;
    }

    .footer .btn.btn-link {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .header-carousel .carousel-caption {
        padding-left: 15px;
        padding-right: 15px;
    }
}

#mapid {
    width: 100%;
    height: 400px;
    position: relative;
    z-index: 1;
}

@media (max-width: 767.98px) {
    #mapid {
        height: 480px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 575px) {
    #mapid {
        height: 420px;
    }

    .nav-bar {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .nav-bar .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .footer p a {
        word-break: break-all;
    }
}

@media (max-width: 480px) {
    #mapid {
        height: 380px;
    }
}

@media (max-width: 414.98px) {
    .sticky-top .navbar-light .navbar-nav .nav-link {
        font-size: 16px;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 16px;
    }

    .m-wrapper .team-icon .nav-link {
        font-size: 16px;
    }

    .m-wrapper .btn {
        font-size: 16px;
    }

    .footer .opening-date h5 {
        font-size: 16px;
    }

    .footer p,
    .footer .opening-date p {
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    #mapid {
        height: 360px;
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
    }

    .m-wrapper .btn {
        font-size: 14px;
    }

    .email-btn {
        font-size: 12px !important;
    }

    .navbar .navbar-brand img {
        max-width: 175px;
    }
}

@media (max-width: 360px) {}

figure {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

figure img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: 0.5s;
}

figure img:hover{
    transform: scale(1.1);
}