/**
* Font
*/
@import url('https://fonts.googleapis.com/css2?family=Signika:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;300;400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

body {
    font-family: 'Work Sans', sans-serif;
}

/**
* navbar
*/
.border-header {
    width: 100%;
    height: 30px;
    background-image: linear-gradient(90deg, #c0943c, #fdfbae, #c0943c)
}

.navbar-brand-border {
    border: 1px solid #746134;
}

.border-warning {
    border-color: #746134;
}

.bg-dark-transparent {
    background-color: rgba(0, 0, 0, 0.35);
}

.bg-green {
    background-color: #307c29;
}

.news-ticker {
    background-color: #DAB86B;
    margin-bottom: 0;
    padding-bottom: 0;
}

.marquee ul,
.marquee li {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #FFF;
    letter-spacing: 5px;
}

.nav-link {
    text-align: center;
    position: relative;
}

.nav-link:focus,
.nav-link:hover {
    color: #DAB96B;
}

.nav-link::after {
    content: '';
    opacity: 0;
    transition: all 0.5s;
    height: 2px;
    width: 100%;
    background-color: #DAB96B;
    position: absolute;
    bottom: 0;
    left: 0;
}

.nav-link:hover::after {
    opacity: 1;
}

.nav-link.dropdown-toggle:hover::after {
    opacity: 0;
}

.dropdown-menu {
    opacity: 0;
    transition: all 0.6s;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
}

.dropdown-menu>li>a:hover {
    background-color: #DAB86B;
}

.carousel-control:hover {
    background-color: #fcf80359;
}

/**
* cover zoom
*/
.cover {
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer;
}

.cover img {
    width: 100%;
    transition: 0.5s all ease-in-out;
}

.cover:hover img {
    transform: scale(1.1);
}

.tenant-thumbnail {
    width: 50px;
}

/**
* custom btn
*/
.btn-more-light {
    display: inline-block;
    padding: 0.75rem 3rem;
    font-size: 12px;
    text-decoration: none;
    border: 1px solid #c9c8c8;
    color: #e6e4e4;
}

.btn-more-light:hover {
    color: #1d1c1c;
    background-color: #e6e4e4;
}

.btn-more-dark {
    display: inline-block;
    padding: 0.75rem 3rem;
    font-size: 12px;
    text-decoration: none;
    border: 1px solid #1d1c1c;
    color: #1d1c1c;
}

.btn-more-dark:hover {
    color: #e6e4e4;
    background-color: #1d1c1c;
}

/**
* heading
*/
.heading-section {
    position: relative;
}

.one .heading-section {
    color: #DAB86B;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.one .heading-section:before {
    width: 28px;
    height: 5px;
    display: block;
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    margin-left: -14px;
    background-color: #DAB86B;
}

.one .heading-section:after {
    width: 50%;
    height: 1px;
    display: block;
    content: "";
    position: relative;
    margin-top: 25px;
    left: 50%;
    margin-left: -25%;
    background-color: #DAB86B;
}

.two .heading-section {
    color: #DAB86B;
    font-weight: 300;
    font-size: 40px;
    letter-spacing: 0;
    line-height: 1.5em;
    padding-bottom: 15px;
    position: relative;
}

.one .heading-section span,
.two .heading-section span {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 3em;
    padding-left: 0.25em;
    color: rgba(0, 0, 0, 0.4);
    padding-bottom: 10px;
}

.two .heading-section:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 10px;
    width: 55px;
    background-color: #DAB86B;
}

.two .heading-section:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 40%;
    background-color: #DAB86B;
}

/**
* pagination
*/
.active>.page-link, .page-link.active {
    background-color: #c9a552;
    border-color: #c9a552;
}

.page-link {
    color: #c8a555;
}

/**
* parallax
*/
.page-banner {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding: 200px 0;
}

.page-banner-overlay {
    background-color: rgba(0, 0, 0, 0.25);
}

.category-menu {
    display: flex;
    justify-content: center;
    margin: 0;
}

.category-menu li {
    margin: 20px;
    list-style: none;
}

.category-menu .facilites {
    display: inline-block;
    border: 1px dashed #DAB86B;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    text-align: center;
}
.category-menu .facilites a {
    color: #DAB86B;
    text-decoration: none;
}
.category-menu .facilites:hover, .facilites a:hover {
    background-color: #DAB86B;
    color: #3a3832;
}

.banner-bg {
    background: url(../images/banner-bg.png?v=1);
    background-repeat: no-repeat;
}

/**
* floor-map
*/
svg path.tenant-svg:hover,
.svg-hover {
    fill: #d9b96eb0;
    cursor: pointer;
}

svg text {
    pointer-events: none;
}

/**
* tenant-list
*/
.tenant-list {
    overflow-y: scroll;
    height: 900px;
}

.tenant-list li {
    border-left: 5px solid #006E3E !important;
    border-bottom: 2px dotted #d9ba6f;
}

/**
* footer
*/
footer {
    background: url(../images/footer-bg.png?v=1);
    background-repeat: no-repeat;
    background-position: bottom;
}

.footer-content {
    color: #D9BA70;
}

/**
* instagram feed
*/
.instafeed-container {
    object-fit: cover;
    position: relative;
}

.instafeed-container .caption {
    background-color: rgba(0, 0, 0, 0.8);
    color: #FFF;
    font-size: 14px;
    padding: 2em;
    position: absolute;
    opacity: 0;
    text-align: center;
    top: 10px;
    transition: 0.35s all ease;
    vertical-align: middle;
}

.instafeed-container:hover .caption {
    top: 0;
    opacity: 1;
}

@media (max-width: 991px) {

    /**
    * sidebar
    */
    .justify-content-end {
        justify-content: flex-start !important;
    }

    .sidebar {
        background-color: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
    }
}