﻿:root {
    --vertical-height: 40%;
    --primary-text-color: rgb(13, 20, 51);
}

*, ::before, ::after {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

body {
    background: rgb(255, 255, 255);
    color: rgb(100, 100, 100);
    overflow-x: hidden;
}

.portal-section {
    display: flex;
    flex-direction: column;
    min-height: 100vh !important;
    min-width: 100% !important;
}

.portal-header-container {
    display: flex;
    justify-content: space-between;
    background-color: rgb(255, 255, 255);
    align-items: center;
    padding: 0px 70px;
}

.portal-header {
    display: flex;
    align-items: center;
}

    .portal-header h1 {
        color: rgb(22, 34, 76);
        font-size: 15px;
        border-right: 2px solid rgb(100, 100, 100);
        padding-right: 15px;
    }

    .portal-header img {
        width: 100px;
        height: 80px;
        object-fit: contain;
    }

.portal-header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

    .portal-header-nav span {
        color: rgb(100, 100, 100);
    }

.main-content {
    display: none;
}

    .main-content.show {
        display: flex;
        flex-direction: column;
    }

.div-banner-con {
    display: block;
}

.portal-main-image-content {
    height: 80dvh;
    position: relative;
}

.portal-sub-image-content img {
    width: 30% !important;
    height: 20% !important;
}

.banner-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .banner-image.active {
        opacity: 1;
    }

.portal-sub-image-content-right {
    display: flex;
    justify-content: flex-end;
}

    .portal-sub-image-content-right img {
        width: 30% !important;
        height: 20% !important;
    }

.portal-zonal-about-us {
    display: flex;
    gap: 15px;
}

.property-listing-section,
.property-detail-section {
    margin: 20px 70px 50px;
    min-height: 70dvh;
}

.more-info-section {
    display: none;
    margin: 20px auto 50px;
    width: 70dvw;
    background-color: #09496D;
    position: relative;
}

    .more-info-section.show {
        display: block;
    }

.property-listing-section {
    display: none;
}

    .property-listing-section.show {
        display: block;
    }

.comp-name {
    line-height: 2em;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    font-weight: 500;
    font-size: 10px !important;
}

.comp-about {
    font-size: 30px;
    flex: 1 1 0%;
    text-indent: 40px;
    padding: 6% 15%;
    letter-spacing: -1px;
    text-align: center;
    color: rgb(29, 33, 74);
}

.featured-properties-title {
    font-size: 25px;
    padding-top: 20px;
    padding-bottom: 20px;
    letter-spacing: 2px;
    text-align: center;
    color: rgb(29, 33, 74);
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
}

.btn-about-us-moreinfo {
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: rgb(255, 255, 255);
    color: rgb(61, 82, 162);
    white-space: nowrap;
    padding-top: 60px;
    border-radius: 50px !important;
    width: 250px !important;
    font-size: 20px !important;
}

.comp-about-strong {
    font-size: clamp(1rem, 1rem + 2vw, 50px);
}

.featured-properties {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portal-footer {
    background: rgb(255, 255, 255);
    padding: 20px 70px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: auto;
}

.main-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    border-top: 1px solid rgb(100, 100, 100);
    padding: 15px;
}

    .main-footer h1 {
        font-size: 18px;
    }

.portal-footer-nav {
    display: flex;
    gap: 20px;
}

    .portal-footer-nav img {
        height: 120px;
        width: 120px;
        object-fit: cover;
        margin: 0px 50px;
    }

.why-zonal {
    display: flex;
    flex-direction: column;
    flex: 1 1 0%;
}

    .why-zonal p {
        font-weight: bold;
        font-size: 20px;
    }

    .why-zonal span {
        font-size: 18px;
        margin-bottom: 10px;
        cursor: pointer;
    }

.contact-us {
    display: flex;
    flex-direction: column;
    flex: 1 1 0%;
}

    .contact-us b {
        font-size: 15px;
    }

    .contact-us p {
        font-weight: bold;
        color: rgb(36, 157, 214);
        font-size: 30px;
        margin: 0px 0px 10px;
    }

    .contact-us span {
        font-size: 15px;
        margin-bottom: 10px;
        cursor: pointer;
    }

.dashboard-item {
    flex-grow: 1;
    padding: 0.3rem;
}

.featured-properties-container {
    min-height: 200px;
    padding: 4rem 7rem;
    border-radius: 8px;
    display: block;
    width: 100%;
}

.link-back {
    text-decoration: none;
    color: rgb(13, 20, 51);
}

    .link-back:hover {
        text-decoration: underline;
    }

/*Property Listing Styles*/
.portal-property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px 10px;
    list-style-type: none;
}

    .portal-property-grid:not(:has( > .portal-property-grid-item)) {
        display: none;
    }

.property-listing-no-result-text {
    display: none;
    text-align: center;
}

.portal-property-grid:not(:has( > .portal-property-grid-item)) + .property-listing-no-result-text {
    display: block;
}

.portal-property-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 0 3px #a59a9a;
    overflow: hidden;
    padding-bottom: 10px;
}

.portal-property-img-container {
    border-radius: 0.5rem;
    height: 200px;
    width: 100%;
}

.portal-property-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.portal-property-info {
    display: flex;
    flex-direction: column;
    padding-inline: 15px;
}

.portal-property-name {
    color: rgb(13, 20, 51);
    font-size: 1rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.portal-property-desc {
    padding: 0px;
    margin-block: 0.3rem;
    opacity: 0.9;
    color: rgb(49, 63, 117);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.portal-property-price {
    margin-block: 0.3rem;
    color: rgb(49, 63, 117);
    font-size: 1.3rem;
    font-weight: 800;
}

.portal-property-control-buttons-container {
    display: flex;
    justify-content: center;
    padding-inline: 15px;
}

.featured-portal-property-title {
    font-size: 1.6rem;
    color: rgb(13, 20, 51);
    text-indent: 10px;
    padding-bottom: 20px;
    text-align: center;
}

.div-btn-more-prop {
    padding-bottom: 40px;
}

.dashboard-agent-list, .portal-property-grid {
    list-style-type: none;
}

.portal-main-image-content {
    position: relative;
}

.portal-property-listing-title {
    font-size: 1rem;
    color: rgb(13, 20, 51);
    text-indent: 10px;
    display: flex;
    align-items: center;
}

/*Property details Styling*/

.property-detail-section {
    display: none;
    flex-direction: column;
    margin-bottom: 10px;
    /*max-height: 85dvh;*/
    /*overflow: hidden;*/
    grid-template-columns: 1fr;
}

.property-detail-section.show {
    display: flex;
    display: grid;
}

.property-detail-header {
    flex: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

#btn-appoint-now {
    margin-left: auto;
}

.property-detail-content {
    padding-top: 15px;
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    overflow: hidden;
    color: var(--primary-text-color);
}

.property-detail-info-container {
    height: 100%;
    overflow: hidden;
    padding: 10px;
}

.property-detail-overview {
    flex: 0;
}

.prop-gallery-container {
    flex: 1 0 auto;
    display: flex;
    width: 100%;
}

.property-detail-info-inner-wrapper {
    box-shadow: 0 0 3px #bfb5b5;
    padding: 15px 25px;
    border-radius: 10px;
    height: 100%;
    overflow-y: auto;
}

.property-detail-gallery {
    padding: 10px;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 5px;
}

.gallery-detail-img {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s; /* for hover effect */
    width: 100%;
    height: 300px;
    object-fit: cover;
}

    .gallery-detail-img:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

.property-content-overview-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.property-content-header-detail {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.property-detail-content-title {
    font-size: 1.1rem;
    text-align: center;
}

.property-detail-field {
    display: flex;
    gap: 5px;
}

.property-detail-field-sm-text {
    font-size: 1rem;
    opacity: .7;
}

.property-detail-text-label {
    white-space: nowrap;
    opacity: 1;
}

.property-detail-overview-group {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.property-detail-content-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    gap: 10px;
    padding-inline: 40px;
}

.poperty-filter-section {
    display: grid;
    grid-template-columns: minmax(400px, auto) auto;
    justify-content: flex-end;
    gap: 5px;
    margin-bottom: 15px;
}

.property-detail-title {
    font-size: 2rem;
    color: var(--primary-text-color);
}

.property-detail-price {
    font-size: 1.5rem;
    color: var(--primary-text-color);
}

.property-detail-img-item {
    filter: drop-shadow(rgba(0, 0, 0, 0.3) 1px 1px 1px);
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.property-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*More Info Styles*/
.more-info-title {
    font-size: 1rem;
    color: rgb(13, 20, 51);
}

.more-info-main section:not(.comp-profile-empty-section) {
    padding-inline: 50px;
}

.more-info-navigation {
    position: absolute;
    top: -20px;
}

.more-info-header-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 50px;
    padding-inline: 50px 0;
    height: 75dvh;
    overflow: hidden;
    grid-template-rows: 1fr 1fr;
}

.header-left {
    position: relative;
    display: grid;
    grid-template-rows: 1fr 1fr;
    z-index: 0;
}

.header-left-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header-left-row {
    display: flex;
    flex: 1;
    position: relative;
}

.dot-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    width: 150px;
    align-self: center;
}

    .dot-container .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #14107F;
    }

.company-logo {
    width: 0;
    height: 0;
    position: relative;
}

    .company-logo img {
        width: 180px;
        height: 180px;
        object-fit: cover;
        position: absolute;
        left: -50px;
        top: -30px;
    }

.header-slanted-lines {
    height: var(--vertical-height);
    width: 30px;
    transform: rotate(35deg);
    position: absolute;
    top: 0%;
    left: -15%;
    z-index: 1;
}

    .header-slanted-lines::before {
        content: "";
        position: absolute;
        width: 5px;
        height: 80%;
        background-color: #140E80;
        left: 0;
        top: 10%;
        bottom: 10%;
    }

    .header-slanted-lines::after {
        content: "";
        position: absolute;
        width: 5px;
        height: 100%;
        background-color: #140E80;
        right: 0;
    }

.header-right {
    width: 100%;
    display: flex;
    position: relative;
}

    .header-right .hero-img-container {
        position: relative;
        overflow: hidden;
    }

    .header-right img {
        position: relative;
        clip-path: polygon(25% 0%, 100% 0%, 100% 50%, 100% 100%, 25% 100%, 0% 50%);
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

.company-summary-container {
    font-family: "Fraunces", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    position: relative;
    z-index: 2;
    margin-left: 115px;
}

.text-white {
    color: #ffffff;
}

.company-title {
    font-size: 3rem;
    display: inline;
    text-shadow: -2px -2px 0 #140E80, 2px -2px 0 #140E80, -2px 2px 0 #140E80, 2px 2px 0 #140E80;
}

.company-summary {
    font-size: 1.3rem;
}

.comp-profile-card {
    background-color: #ffffff;
    height: 70%;
    clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    width: 110%;
    margin-left: -50px;
}

.comp-profile-empty-section {
    height: 100px;
}

.comp-profile-card-hor-line {
    height: 20px;
    width: 100%;
    background-color: #09496D;
}

.comp-profile-card h1 {
    color: #09496D;
    font-weight: 600;
    font-size: 3rem;
    font-style: italic;
    display: inline-flex;
    width: min-content;
}

.comp-profile-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.more-info-content-section div:not(.comp-section-overlay) {
    z-index: 2;
}

.comp-history-section .floating-dot-container,
.comp-background-section .floating-dot-container {
    top: -42px;
    right: -40px;
}

.comp-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9,73,108, 0.7);
    z-index: 1;
}

.vision-mission-container {
    position: relative;
    top: -18vh;
}

    .vision-mission-container .floating-dot-container {
        bottom: -500px;
        left: 25%;
        position: absolute;
        z-index: 3;
    }

.comp-profile-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.profile-col-content:nth-child(2) p {
    margin-top: 20px;
}

.profile-col-content h3 {
    font-size: 2.5rem;
    color: #FFDE59;
    margin-bottom: 5px;
}

.profile-col-content p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-left: 15px;
}

.team-content {
    margin-top: 20px !important;
    position: relative;
    top: -15dvh;
}

    .team-content + .profile-col-content {
        top: -15dvh;
        position: relative;
    }

.profile-team-list-container {
    width: auto;
}

.profile-team-list {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(2, 120px);
    gap: 15px;
}

.profile-team-item {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #ffffff;
}

    .profile-team-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background-color: transparent;
    }

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contact-details-item {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

    .contact-details-item p {
        font-size: 1rem;
        margin: 0 !important;
    }

    .contact-details-item .contact-detail-icon-container {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
        background-color: #ffffff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .contact-details-item .contact-detail-icon-container i {
            color: #0D415E;
            font-size: 1.2rem;
        }

.comp-history-section {
    padding-block: 0 30px;
    position: relative;
}

.comp-background-section {
    padding-block: 0 30px;
    position: relative;
}

.floating-dot-container {
    position: absolute;
    top: 59px;
    transform: translate(-50%, 50%);
    left: 40%;
}

.comp-content-header {
    background-color: #ffffff;
    padding-block: 5px;
    display: flex;
    align-items: center;
    width: 70%;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    margin-left: -50px;
    padding-left: 50px;
    position: relative;
}

    .comp-content-header h3 {
        font-size: 1.5rem;
        color: #14107F;
        padding: 0;
        padding: 0;
    }

.comp-content-details {
    color: #ffffff;
    font-size: 1rem;
    padding: 10px;
    position: relative;
}

    .comp-content-details * {
        font-size: 1.1rem;
        position: relative;
        z-index: 1;
    }

    .comp-content-details::after {
        content: " ";
        position: absolute;
        height: 100px;
        width: 5px;
        background-color: #14107F;
        transform: translate(0, 314%);
        right: 0;
        top: 0;
    }

    .comp-content-details p.w-50 {
        width: 60%;
    }

.comp-history-content img {
    display: inline-flex;
    float: right;
    width: 500px;
    height: 500px;
    object-fit: cover;
    margin-left: 10px;
    position: absolute;
    top: -80px;
    right: -50px;
    clip-path: polygon(50% 0, 95% 0%, 100% 10%, 100% 90%, 95% 100%, 50% 900%, 30% 100%, 0 50%, 0 50%, 30% 0);
}

.comp-history-content p br {
    clear: both;
}

.comp-background-content ul,
.comp-background-content ol {
    padding-left: 30px;
}

.comp-background-content li {
    margin-top: 5px;
}

.comp-agent-section {
    padding-block: 0 30px;
    position: relative;
}

.more-info-card-list {
    margin-top: 30px;
}

.more-info-card-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 300px));
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.more-info-card {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background-color: #fff;
    cursor: pointer;
}

.more-info-card-img-container {
    width: 100%;
    height: 250px;
}

.more-info-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.more-info-card-detail {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.more-info-position {
    color: #09496D;
    font-weight: 900;
}

.more-info-name {
    color: #09496D;
    font-weight: 600;
}

.modal-agent-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.agent-name-container h1 {
    font-size: 1.5rem;
    color: #1D214A;
}

#modal-agent-detail h1 {
    font-size: 1.5rem;
}

.agent-contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-inline: 1rem;
}

    .agent-contact-details p {
        font-size: 1.2rem;
        color: #1D214A;
    }

    .agent-contact-details i {
        color: #1D214A;
        font-size: 1rem;
    }

.agent-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .agent-contact-item span {
        color: #1D214A;
        font-size: 1rem;
        font-weight: 600;
    }

#no-agent-message {
    color: #fff;
    z-index: 1;
    position: relative;
    font-size: 2rem;
    text-align: center;
}

@media (max-width: 1199.98px) {
    .more-info-section {
        width: 100%;
    }

    .header-slanted-lines {
        top: 5%;
        left: -10%;
    }

}

@media screen and (max-width: 768px) {
    .portal-footer-nav {
        flex-direction: column;
        align-items: center;
    }

    .comp-about {
        text-indent: 0px;
    }

    .portal-footer-nav .contact-us p {
        text-align: center;
    }

    .portal-header-container {
        padding-inline: 5px;
        padding-top: 10px;
        flex-direction: column;
    }

    .header-left-content {
        background-image: url("/images/img/portal/about-us/portal-about-us-hero.png");
        position: relative;
    }

    .property-listing-section, .property-detail-section {
        margin: 20px 20px 50px;
        min-height: 70dvh;
        position: relative;
    }

    .poperty-filter-section {
        margin-top: 20px;
        grid-template-columns: 1fr auto;
    }

    .featured-properties-container {
        padding: 2rem;
    }

    .portal-property-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .portal-header-actions {
        display: flex;
        gap: 5px;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .comp-profile-section {
        grid-template-columns: 1fr;
        justify-content: center;
    }

    .more-info-main section:not(.comp-profile-empty-section) {
        padding-inline: 1rem;
    }

    .comp-profile-section h3 {
        text-align: center;
    }

    .profile-team-list {
        justify-content: center;
    }

    .comp-content-header {
        width: auto;
    }

    .comp-content-details p.w-50 {
        width: auto;
    }

    .comp-history-content img {
        position: static;
        clip-path: none;
        width: 100%;
        display: block;
        float: none;
        margin-inline: 0;
        margin-bottom: 10px;
    }

    .more-info-header-section {
        grid-template-columns: 1fr;
        padding-inline: 20px;
        grid-template-rows: 1fr;
    }

    .header-right {
        display: none;
    }

    .header-left {
        gap: 20px;
    }

    .comp-profile-card-hor-line {
        height: 20px;
    }

    .dot-container {
        gap: 8px;
        width: 100px;
    }

    .dot-container .dot {
        height: 5px;
        width: 5px;
    }

    .comp-history-section .floating-dot-container,
    .comp-background-section .floating-dot-container {
        top: -25px;
        left: auto;
        right: -10px;
    }

    .header-left-content-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(5 80 122 / 70%);
        z-index: 1;
    }

    .company-logo img {
        width: 100px;
        height: 100px;
        left: 15px;
        top: 15px;
        z-index: 2;
    }

    .company-summary-container {
        padding-top: 15px;
    }

    .header-left-row .dot-container {
        z-index: 2;
        left: 10px;
        position: absolute;
    }

    .company-summary-container .company-title {
        font-size: 2rem;
    }

    .company-summary-container .company-summary {
        font-size: 1.3rem;
    }

    .comp-profile-card h1 {
        font-size: 2.5rem;
    }

    .comp-profile-dot-container {
        bottom: -700px !important;
    }

    .property-main-wrapper {
        display: flex;
        flex-direction: column;
        width: auto;
    }

    .poperty-filter-section {
        margin-top: 20px;
        grid-template-columns: 1fr auto;
    }

    .portal-property-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .property-detail-info-container {
        overflow: visible;
        height: auto;
        padding-inline: 0;
    }

    .property-detail-content {
        display: flex;
        flex-direction: column;
        /*overflow-y: auto;*/
    }

    .property-detail-left-content {
        overflow: visible !important;
    }

    .property-detail-section {
        overflow-y: auto;
    }

    .property-detail-content-fields {
        display: flex;
        flex-direction: column;
        padding-inline: 10px;
    }

    .property-detail-info-inner-wrapper {
        height: auto;
        overflow-y: visible;
    }

    .portal-sub-image-content img {
        width: 100% !important;
    }

    .portal-sub-image-content-right img {
        width: 100% !important;
    }

    .portal-footer-nav img {
        height: 100px;
        width: 100px;
    }

    .comp-background-dot-container {
        top: -30px !important;
        right: -30px !important;
    }

    .portal-header {
        gap: 10px;
        align-items: center;
        flex-direction: column;
        padding-inline: 0;
        border-bottom: 2px solid rgb(100, 100, 100);
        padding-bottom: 5px;
    }

    .portal-header img {
        width: 60px;
        height: 60px;
        object-fit: cover;
    }

    .portal-header h1 {
        border-right: none;
        font-size: 16px;
        text-align: center;
    }

    .property-detail-gallery{
        display: flex;
        flex-direction: column;
        padding-inline: 0;
    }
}
