#main-content {
    padding: 0;
}

.overlap-container {
    position: relative;
}

@media (max-width: 1023px) {
    .mobile-transparent {
        background-color: transparent !important;
    }
}

/* Home Slider */
#home-slider.home-slider .elementor-widget-container .nav-dir-horizontal .tp-tab {
    opacity: 0.5;
}

#home-slider.home-slider .elementor-widget-container .nav-dir-horizontal .tp-tab.selected {
    opacity: 1;
}


/* Footer */
.wechat-qrcode {
    width: 124px;
}

.show-qrcode {
    display: none;
    width: 124px;
}

.show-qrcode-image {
    display: none;
    width: 124px;
}

.wechat-code-footer {
    cursor: pointer;
}

.wechat-code-footer:hover+.show-qrcode-image {
    display: flex;
}

.title-eng {
    font-family: "Avenir Next", Arial, sans-serif;
    font-size: 70px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    color: #081C2A1A;
    margin: 0;
}

.title-cn {
    font-family: "Noto Sans SC", Arial, sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 44.8px;
    position: relative;
    color: #081C2A;
    top: -45px;
}

.invest-title-eng {
    font-family: "Avenir Next", Arial, sans-serif;
    font-size: 60px;
    font-weight: 500;
    line-height: 91px;
    position: relative;
    color: #081C2A1A;
    margin: 0;
}

.invest-title-cn {
    font-family: 'Noto Sans SC';
    font-size: 32px;
    font-weight: 600;
    line-height: 44.8px;
    position: relative;
    color: #081C2A;
    top: -45px;
}

.invest-title-eng-2 {
    font-family: "Avenir Next", Arial, sans-serif;
    font-size: 60px;
    font-weight: 500;
    line-height: 91px;
    position: relative;
    color: #FFFFFF1A;
    margin: 0;
}

.invest-title-cn-2 {
    font-family: 'Noto Sans SC';
    font-size: 32px;
    font-weight: 600;
    line-height: 44.8px;
    position: relative;
    color: #FFF;
    top: -45px;
}

@media (max-width: 1023px) {
    .title-eng {
        font-size: 30px !important;
        line-height: 1.2 !important;
    }

    .title-cn {
        font-size: 24px;
        line-height: 33.6px;
        top: -20px;
    }

    .invest-title-eng {
        font-size: 30px !important;
        line-height: 36px !important;
    }

    .invest-title-cn {
        font-size: 24px;
        line-height: 33.6px;
        top: -20px;
    }

    .invest-title-eng-2 {
        font-size: 30px !important;
        line-height: 36px !important;
    }

    .invest-title-cn-2 {
        font-size: 24px;
        line-height: 33.6px;
        top: -20px;
    }

    .wechat-code-footer:hover+.show-qrcode-image {
        display: flex;
    }

    .show-qrcode-image {
        display: flex;
    }
}

/* General container to center everything */
.carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75vh;
    padding: 20px;
    flex-direction: row;
    overflow: hidden;
}

.columns {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    gap: 20px;
    transition: background-image 0.5s ease-in-out;
}

.column {
    flex: 1;
    position: relative;
    z-index: 2;
    height: 100%;

    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transition: transform 0.3s ease-in-out;
    background-size: cover;
    background-position: center center;
}

.column:hover {
    transform: scale(1.05);
}


.column:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(5px);
    z-index: 1;
}


.columnTxt {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);/
}


@media (max-width: 768px) {
    .columns {
        flex-direction: column;
        gap: 15px;
    }

    .column {
        height: 400px;
    }
}

/* Responsive: Mobile */
@media (max-width: 480px) {
    .columns {
        flex-direction: column;
        gap: 10px;
    }

    .column {
        height: 300px;

        .columnTxt {
            font-size: 16px;
        }
    }
}

#appointment-form input[type="text"],
#appointment-form input[type="email"] {
    background: transparent;
    border-bottom: 1px solid #ffffff;
    border-top: none;
    border-left: none;
    border-right: none;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    width: 100%;
}


#appointment-form input[type="submit"] {
    background: #EEEFEA;
    width: 220px;
    border-radius: 5px;
    padding-left: 50px;
    padding-right: 50px;
    color: #081C2A;
}

#appointment-form input[type="submit"]:hover {
    background: transparent;
    width: 220px;
    border: 1px solid #EEEFEA;
    border-radius: 5px;
    padding-left: 50px;
    padding-right: 50px;
    color: #EEEFEA;
}

#appointment-form .left-part p {
    padding-right: 20px;
}

#appointment-form .right-part p {
    padding-left: 20px;
}

#appointment-form .row {
    gap: 16px;
    /* Add gap between columns */
}

.contact-form-submit-wrapper {
    display: flex;
    /* Flexbox for alignment */
    justify-content: flex-end;
    /* Align submit button to the right */
    margin-top: 16px;
    /* Optional: Space above the submit button */
}

.contact-form-submit-wrapper p {
    display: flex;
    flex-direction: row-reverse;
}

.home-apus-tab .widget-tabs .widget-content .nav-tabs>li.active>a {
    font-family: 'noto sans sc';
    color: #081C2AB2;
    background-color: transparent;
    border-bottom: 6px solid #081C2A;
    font-size: 20px;
}

.home-apus-tab .widget-tabs .widget-content .nav-tabs>li>a {
    background: transparent;
    color: #081C2AB2;
    font-size: 20px;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #000;
    line-height: 1.5;
}

.home-apus-tab .tab-content {
    padding: 0 !important;
}

.home-apus-tab .widget-tabs .widget-content .nav-tabs>li {
    flex-grow: 1;
}

.widget-tabs .widget-content .tab-content .tabs-inner {
    justify-content: center;
}

.home-apus-tab .widget-tabs.style2 .widget-content .nav-tabs>li>a:hover {
    color: #081C2AB2;
    background: transparent !important;
    border-bottom: 1px solid #000;
}

#menuhopin {
    backdrop-filter: blur(10px);
}

/* #menuhopin::before {
    backdrop-filter: blur(10px);
} */


/* Invest Information */




.invest-info-container {
    display: flex;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.invest-info-container.fade-out {
    opacity: 0;
}

.invest-info-container.fade-in {
    opacity: 1;
}

.invest-information-left {
    width: 50vw;
    height: 56.25vw;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.invest-info-right {
    width: 50vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.invest-info-count {
    font-family: Noto Sans SC;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #081C2AB2;
    margin-bottom: 30px;
    order: 1;
}

.invest-info-location {
    font-family: Noto Sans SC;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #081C2A;
    display: flex;
    flex-direction: row;
    order: 2;
}

.invest-info-location svg {
    margin-right: 5px;
    ;
}

.invest-info-title {
    font-family: Noto Sans SC;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.1em;
    color: #081C2A;
    margin-bottom: 20px;
    order: 3;
}

.invest-info-control {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 4;
}

.invest-info-more-btn-mobile-container {
    display: flex;
    justify-content: center;
    margin-top: 55px;
}



.invest-info-control .invest-info-btn svg {
    width: 17.26px;
    fill: #081C2A;
}

.invest-info-control-mobile .invest-info-btn svg {
    width: 8.63px;
    fill: #081C2A;
}

.invest-info-control .invest-info-btn:hover svg {
    fill: #081C2A1A !important;
}


.invest-info-control .svg-link:hover .svg-path {
    fill: #081C2A;
    /* Change to desired hover color */
}

.invest-info-control .svg-link .svg-path {
    transition: fill 0.3s ease;
    /* Smooth transition for color changes */
}

.invest-info-thumbnail {
    width: 220px;
    padding-bottom: 90%;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 30px 30px 30px;

}

.invest-info-more-btn {
    background: #081C2A;
    width: Fixed (200px)px;
    height: Fixed (50px)px;
    top: 620.3px;
    left: 979.5px;
    padding: 10px 50px 10px 50px;
    border-radius: 4px;
    font-family: Noto Sans SC;
    font-size: 14px;
    font-weight: 500;
    line-height: 18.2px;
    color: #FFFFFF;
    order: 6;
}

.invest-info-more-btn:hover {
    background: #FFFFFF;
    color: #081C2A;
}

.invest-info-more-btn:active {
    color: #FFFFFF !important;
}

.invest-info-more-btn:active {
    background: #FFFFFF;
    color: #081C2A;
}

.invest-info-more-btn-mobile {
    background: #081C2A;
    width: Fixed (140px)px;
    height: Fixed (40px)px;
    top: 620.3px;
    left: 979.5px;
    padding: 10px 50px 10px 50px;
    border-radius: 4px;
    font-family: Noto Sans SC;
    font-size: 14px;
    font-weight: 500;
    line-height: 18.2px;
    color: #FFFFFF;
}

@media (max-width:1023px) {
    .advantage-points-list {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .advantage-points-list .ii-cell {
        border-bottom: 1px solid #081C2A4D;
        font-size: 16px;
    }


    .invest-info {
        background-color: #FFF !important;
    }

    .invest-info-right {
        align-items: flex-start;
        padding-left: 15px;
        justify-content: flex-start;
    }

    .invest-information-left {
        height: 70vw;
    }

    .invest-info-count {
        font-size: 10px;
        margin-top: 10px;
        margin-bottom: 10px;
        order: 2;
    }

    .invest-info-location {
        font-size: 12px;
        margin-bottom: 5px;
        order: 3;
    }

    .invest-info-title {
        font-size: 16px;
        margin-bottom: 10px;
        order: 4;
    }

    .invest-info-control {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: flex-start;

    }

    .invest-info-control .invest-info-thumbnail {
        margin: 0;
        width: 90%;
        background-position-x: center;
        background-position-y: bottom;
    }

    .invest-info-more-btn {
        display: none;
    }

    .invest-info-control-mobile {
        width: 35%;
        order: 5;
        display: flex;
        justify-content: space-between;
    }

    .invest-info-desktop {
        display: none;

    }

}

@media (min-width :1024px) {
    .invest-info-more-btn-mobile {
        display: none;
    }

    .invest-info-more-btn-mobile-container {
        display: none;
    }

    .invest-info-control-mobile {
        display: none;
    }
}

.invest-case .elementor-widget-container>.e-n-accordion>.e-n-accordion-item:first-child>.e-n-accordion-item-title {
    border-width: 0px !important;
}



.invest-case .e-n-accordion-item-title-icon .e-closed {
    background: #EEEFEA;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.invest-case .e-n-accordion-item-title-icon .e-opened {
    background: #081C2A;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.invest-case .e-n-accordion-item-title-icon .e-opened path {
    fill: #fff;
}

.invest-case .e-n-accordion-item-title-icon .e-closed path {
    fill: #081C2A;
}

.invest-case .e-n-accordion-item-title-icon:hover .e-closed,
.e-opened {
    background: #081C2A1A;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.elementor-widget-n-accordion .e-n-accordion-item[open]>.e-n-accordion-item-title .e-n-accordion-item-title-icon span>svg {
    filter: hue-rotate(0deg) saturate(300%) brightness(80%);
}



/* Project List */
.pl-tabs-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Hides overflow content */
    position: relative;
    padding-top: 20px;
    padding-bottom: 50px;
}


.pl-tab .e-filter-item {
    padding: 20px 20px 20px 20px;
}



.pl-tab-nav:hover {
    cursor: pointer;
    color: #081C2A;
    background: transparent;
    border: none;
    font-size: 18px;
    padding: 10px;
}

.pl-tab-content {
    margin-top: 20px;
}

.pl-tab-panel {
    display: none;
}

.pl-tab-panel.active {
    display: block;
}

.pl-cell .elementor-widget-container .ue-grid .ue-grid-item:nth-child(even) {
    padding-top: 150px;
}

@media(max-width:1023px) {
    .pl-cell .elementor-widget-container .ue-grid .ue-grid-item:nth-child(even) {
        padding-top: 80px;
    }
}



.pl-image-text {
    opacity: 0;
    transition: all .3s ease-in-out;
    pointer-events: none;
}

.pl-image:hover {
    transform: scale(1.01);
}

.pl-image:hover .pl-image-text {
    opacity: 1;
    pointer-events: all;
}

.pl-taxonomy {
    font-family: Avenir Next;
    font-size: 60px;
    font-weight: 500;
    color: rgba(8, 28, 42, 0.1);
    line-height: 1;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.pl-mobile-btn {
    height: 100%;
}

.pl-mobile-btn .elementor-widget-container {
    height: 100%;
}

.pl-mobile-btn .elementor-widget-container .elementor-button-wrapper {
    height: 100%;
}

.pl-mobile-btn .elementor-button-link {
    width: 100%;
    height: 100%;
}

@media (max-width: 1023px) {
    .pl-taxonomy {
        font-family: Avenir Next;
        font-size: 28px;
        font-weight: 500;
        color: rgba(8, 28, 42, 0.1);
        line-height: 1;
        text-align: right;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
    }
}

/* Project Detail */
.project-detail-tab .e-n-tabs-heading {
    margin: 0 0 0 250px;
    border-left: 2px solid #081C2A1A;
}

.ap-cell {
    display: flex;
    align-items: center;
    font-family: Noto Sans SC;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    color: #081c2a;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #EEEFEA;
}

.ii-cell {
    display: flex;
    font-family: Noto Sans SC;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    color: #081c2a;
    padding-top: 20px;
    padding-bottom: 10px;
    align-items: baseline;
}



.advantage-points-container {
    display: flex;
}

.advantage-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.first-column {
    width: 50%;
}

.second-column {
    width: 50%;
}

.ii-benefit-cell {
    display: flex;
    align-items: baseline;
}

.ap-order {
    font-family: Avenir Next;
    color: #081C2A80;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    padding-right: 20px;
}

.ap-text {
    font-family: 'Noto Sans SC';
    color: #081c2a;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    padding-right: 20px;
}

@media (min-width: 1024px) {
    .advantage-points-container {
        flex-direction: row;
        padding-right: 80px;
        gap: 40px;

    }

    .advantage-column {
        width: 50%;
    }

    .top-benefits .ap-order-top-benefits-mobile {
        display: none;
    }

    .advantage-points-list .ap-order-top-benefits-mobile {
        display: none;
    }
}

@media (max-width: 1023px) {
    .advantage-points-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px 10px;

    }

    .advantage-column {
        width: 100%;
    }

    .ii-benefit-cell {
        border-bottom: 1px solid #081C2A4D;
        font-size: 16px;
        padding-bottom: 10px;
    }

    .top-benefits .ap-order-top-benefits-desktop {
        display: none
    }

    .advantage-points-list .ap-order-top-benefits-desktop {
        display: none;
    }

}

/* Get In Touch */
.office-text {
    backdrop-filter: blur(14.541825294494629px);
}


.simple-horizontal-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    margin: 0 15px;
    border-bottom: 1px solid #081C2A4D;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    cursor: pointer;
    height: 104px;
    transition: background-color 0.3s ease, height 0.3s ease;
}

.accordion-header:hover {
    background-color: #f0f0f0;
}

.accordion-position {
    font-family: 'Noto Sans SC';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #081C2A;
}

.accordion-name {
    font-family: 'Avenir Next';
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #081C2A;
}

.accordion-title {
    flex: 1;
    text-align: left;
}

.accordion-description {
    padding-right: 50px;
    flex: 2;
    max-width: 500px;
    font-family: 'Noto Sans SC';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    text-align: left;
    overflow: hidden;
    /* white-space: nowrap; */
    text-overflow: ellipsis;
    transition: white-space 0.3s ease;
    color: #081C2A;
}

.accordion-item:not(.open) .accordion-description p {
    height: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal !important;

}

.accordion-item.open .accordion-header {
    height: auto;
    align-items: flex-start;
}

.accordion-item.open .accordion-description {
    white-space: normal;
    text-align: left;
}

@media (max-width: 1023px) {
    .accordion-header {
        flex-direction: column;
        height: 165px;
    }

    .accordion-position {
        font-size: 12px;
    }

    .accordion-name {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .accordion-item:not(.open) .accordion-description p {
        padding-top: 0;
        height: 44px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        white-space: normal !important;

    }

    .accordion-description {
        max-width: 100%;
    }
}






.invest-info-left {
    display: none;
    width: 254px;
    /* Adjust width */
    height: 260px;
    background-size: cover;
    background-position: center;
    margin-right: 10px;
}

.accordion-item.open .invest-info-left {
    display: block;
    /* Show the image when the accordion is opened */
}

.accordion-icon {
    content: '';
    background-image: url('./inc/assets/icon/accordion-open.svg');
    background-size: contain;
    /* Ensures the image fits within the width/height */
    background-repeat: no-repeat;
    width: 30px;
    /* Control the width */
    height: 30px;
    /* Control the height */
    position: absolute;
    right: 1vw;
    top: 1.5vw;
    transition: transform 0.3s ease;
    /* Smooth rotation effect */
}

.accordion-item.open .accordion-icon {
    content: '';
    background-image: url('./inc/assets/icon/accordion-close.svg');
    background-size: contain;
    /* Ensures the image fits within the width/height */
    background-repeat: no-repeat;
    width: 30px;
    /* Control the width */
    height: 30px;
    /* Control the height */
    position: absolute;
    right: 1vw;
    top: 1.5vw;
    transition: transform 0.3s ease;
    /* Smooth rotation effect */
}

@media (max-width: 1023px) {
    .accordion-item .accordion-icon {
        width: 30px;
        height: 30px;
        right: 20px;
        top: 30px;
    }

    .accordion-item.open .accordion-icon {
        width: 30px;
        height: 30px;
        right: 20px;
        top: 30px;
    }

    .accordion-item.open .invest-info-left {
        margin-bottom: 20px;
    }
}

/* Open state: arrow points up (rotates 180 degrees) */

.accordion-item.open .accordion-icon img {
    transform: rotate(180deg);
    /* Rotate arrow */
}

.why-darglobal-office .elementor-widget-container .elementor-swiper-button {
    display: none;
}

.why-darglobal-office .elementor-loop-container .swiper-wrapper:last-child {
    padding-right: 50px;
}


/* Collaboration */

.related-projects {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;

}

.related-project {
    width: calc(50% - 10px);
    display: flex;
    position: relative;
    flex-direction: column;
}

.rp-text-part {
    display: flex;
    justify-content: space-between
}

.rp-title {
    display: flex;
    flex-direction: column;
}

.rp-address {
    font-family: Noto Sans SC;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #081C2AB2;
}

.rp-name {
    font-family: Noto Sans SC;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #081C2A;
}


.rp-taxonomies {
    display: flex;
    align-items: flex-end
}


.rp-taxonomy {
    font-family: 'Avenir Next', sans-serif;
    font-size: 60px;
    font-weight: 500;
    color: rgba(8, 28, 42, 0.1);
    line-height: 1;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: -10px;
}

.rp-image {
    position: relative;
    width: 100%;
    /* Adjust width as needed */
    background-size: cover;
    /* Ensures the image covers the div */
    background-position: center;
    /* Centers the image within the div */
    background-repeat: no-repeat;
    /* Prevents repeating the image */
    padding-bottom: 72.69%;
    transition: all 0.3s ease-in-out;
}

.rp-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.rp-image:hover::before {
    opacity: 1;
}


.rp-image-content {
    position: absolute;
    bottom: 45px;
    padding: 0 150px 0 15px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.rp-image-content-text-btn {
    background: #081C2A;
    width: Fixed (200px)px;
    height: Fixed (50px)px;
    padding: 10px 50px 10px 50px;
    border-radius: 4px;
    font-family: Noto Sans SC;
    font-size: 14px;
    font-weight: 500;
    line-height: 18.2px;
    color: #FFFFFF;

}

.rp-image-content-text-btn:hover {
    background: #fff;
    color: #081C2A;
}

.rp-image:hover .rp-image-content {
    opacity: 1;
}

.rp-btn-mobile {
    position: absolute;
    width: 100%;
    height: 100%;
}


@media (max-width: 1023px) {

    .rp-address {
        font-size: 12px;
    }

    .rp-name {
        font-size: 20px;
    }

    .rp-taxonomies-top {
        display: none;
    }

    .rp-taxonomy {
        font-size: 28px;
        text-align: right;
    }

    .rp-taxonomies-bottom {
        justify-content: flex-end;
        font-family: "Avenir Next", Arial, sans-serif;
        font-size: 28px;
        font-weight: 500;
        line-height: 1;
        color: #081C2A1A;
    }

    .rp-image {
        padding-bottom: 130%;
    }

    .rp-image-content {
        display: none;
    }
}

@media (min-width: 1024px) {
    .rp-taxonomies-bottom {
        display: none;
    }

    .rp-btn-mobile {
        display: none;
    }
}



/* Project Detail */
.ib-carousel-wrapper {
    overflow: hidden;
    /* Ensure no vertical scrolling */
    position: relative;
    width: 100%;
}

.ib-carousel::-webkit-scrollbar {
    display: none;
    /* Hide the scrollbar for a clean look */
}

.ib-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    cursor: grab;
    padding-left: 150px;
    padding-right: 150px;
    /* Adds padding before the first item */
}

.ib-carousel.dragging {
    cursor: grabbing;
}

.ib-carousel-item {
    flex: 0 0 367px;
    /* Fixed width of each item */
    min-height: 226px;
    background: #EEEFEA80;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
}

.benefit-point-number {
    font-family: Avenir Next;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #081C2A4D;

}

.benefit-point-title {
    font-family: Noto Sans SC;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #081C2A;

}

.ib-carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}

.ib-carousel-prev,
.ib-carousel-next {
    padding: 0px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.ib-carousel-next svg path,
.ib-carousel-prev svg path {
    fill: #081C2A;
    transition: opacity 0.3s ease-in-out, fill 0.3s ease-in-out;
    /* Smooth transition */
}

.ib-carousel-next:hover svg path,
.ib-carousel-prev:hover svg path {
    fill: #081C2A;
    opacity: 1;
}

.ib-carousel-prev:disabled,
.ib-carousel-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.properties-control-btn svg {
    height: 40px !important;
}

.properties-control-next svg path,
.properties-control-prev svg path {
    fill: #081C2A;
    opacity: 1;
}

.ib-carousel-next svg,
.properties-control-next svg {
    transform: rotate(180deg);
}

.btn-inactive {
    opacity: 0.3;
}



/* .ib-carousel-next:hover svg path{
    fill: #081C2A;
} */

.ib-carousel.dragging {
    cursor: grabbing;
}


/* Amenites */
.amenities-carousel-wrapper {
    overflow: hidden;
    /* Ensure no vertical scrolling */
    position: relative;
    width: 100%;
}

.amenities-carousel::-webkit-scrollbar {
    display: none;
    /* Hide the scrollbar for a clean look */
}

.amenities-carousel {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    cursor: grab;
    padding-left: 150px;
    /* Adds padding before the first item */
}

.amenities-carousel.dragging {
    cursor: grabbing;
}

.amenity-icon {
    margin-bottom: 50px;
}

.amenity-icon-mobile {
    margin-right: 10px;
}


.amenities-carousel-item {
    flex: 0 0 220px;
    min-height: 220px;
    background: #EEEFEA80;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
}


.benefit-point-title {
    font-family: Noto Sans SC;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #081C2A;

}

.amenities-carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}

.amenities-carousel-prev,
.amenities-carousel-next {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.amenities-carousel-prev:disabled,
.amenities-carousel-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.amenities-carousel-next img {
    transform: rotate(180deg);
}

.amenities-carousel-next:hover img {
    fill: #081C2A;
}

.amenities-carousel.dragging {
    cursor: grabbing;
}


/* Photo Gallary */
.pg-carousel-item {
    flex: 0 0 367px;
    background: #EEEFEA80;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 240px;
}

.pu-carousel-item {
    flex: 0 0 367px;
    background: #EEEFEA80;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 240px;
}

.pg-carousel-item.selected {
    border: 5px solid #081C2A;
    box-sizing: border-box;
}

.pu-carousel-item.selected {
    border: 5px solid #081C2A;
    box-sizing: border-box;
}


@media (max-width: 1023px) {
    .ib-carousel {
        padding-left: 0;
        padding-right: 0;
    }

    .pg-carousel-item {
        flex: 0 0 140px;
        background: #EEEFEA80;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        height: 90px;
    }

    .pu-carousel-item {
        flex: 0 0 140px;
        background: #EEEFEA80;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        height: 90px;
    }

    .photo-gallery-big,
    .progress-image-big {
        padding-bottom: 56.4% !important;

    }

    .pg-carousel-item.selected,
    .pu-carousel-item.selected {
        border: 2px solid #081C2A;
    }
}

.kf-carousel-item {
    flex: 0 0 270px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* padding: 20px; */
}

.kf-carousel-image {
    width: 100%;
    padding-bottom: 114%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.kf-point-title {
    font-family: Noto Sans SC;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #081C2A;
    margin-top: 15px;
}



.photo-gallery-big,
.progress-image-big {
    padding-bottom: 35.2%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}



.why-darglobal-office .swiper-pagination {
    display: none;
}

.ii-carousel-item {
    flex: 0 0 367px;
    /* Fixed width of each item */
    min-height: 226px;
    background: #FFFFFFCC;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
}


.why-invest>.uc-items-wrapper {
    margin-left: 15% !important;
    margin-right: 15% !important;
}

/* Investment information */
.why-invest-in-section .uc-dynamic-popup-grid .uc-items-wrapper {
    padding: 0 7vw 0 7vw !important;

}

.why-invest-in-section .r-tabs-state-active {
    background: #EEEFEA !important;
}

.why-invest-in-section .elementor-widget-container .uc-dynamic-popup-grid .r-tabs-accordion-title a {
    font-family: Noto Sans SC;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    /* letter-spacing: 4px; */
    color: #081C2A;
    padding: 10px 0 10px 0;
}

.home-reason-to-invest-section .elementor-widget-container .uc-dynamic-popup-grid .r-tabs-accordion-title a {
    font-family: Noto Sans SC;
    font-weight: 500;
    font-size: 4.1vw;
    line-height: 26px;
    /* letter-spacing: 4px; */
    color: #081C2A;
    padding: 10px 0 10px 0;
}


.investment-information-cell {}


@media (max-width: 1023px) {
    .kf-carousel-item {
        flex: 0 0 140px;
    }

    .investment-information-cell-left {
        position: absolute;
        left: 0vw;
        bottom: -23vw;
        z-index: 5;
        min-height: 35vw;
    }

    .investment-information-cell-right {
        position: absolute;
        right: 0vw;
        bottom: -23vw;
        z-index: 5;
    }

}


/* Get In Touch Form */

.get-in-touch-form {
    padding-left: 0;
}

.get-in-touch-form input[type="text"],
.get-in-touch-form input[type="tel"],
.get-in-touch-form input[type="email"],
.get-in-touch-form select {
    background: #081C2A1A;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 0.75px solid #081C2A;
    padding-left: 25px;
    color: #081C2A;
}

.get-in-touch-form textarea {
    background: #081C2A1A;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 0.75px solid #081C2A;
    padding: 25px;
    color: #081C2A;
}

.get-in-touch-form input[type="text"]:focus,
.get-in-touch-form input[type="tel"]:focus,
.get-in-touch-form input[type="email"]:focus,
.get-in-touch-form select:focus,
.get-in-touch-form textarea:focus {
    background: #081C2A1A;
    border-bottom: 0.75px solid #081C2A;
    padding-left: 25px;
    padding-right: 25px;
    color: #081C2A;
}

.get-in-touch-form input::placeholder {
    color: #081C2A;
    /* Change to your desired color */
    opacity: 1;
    /* Ensure full opacity */
}

.get-in-touch-form textarea::placeholder {
    color: #081C2A;
    /* Change to your desired color */
    opacity: 1;
    /* Ensure full opacity */
}

.get-in-touch-form .checkbox-container .wpcf7-list-item {
    display: flex;
    margin: 0;
    padding-bottom: 10px;
}

.get-in-touch-form .checkbox-container br {
    display: none;

}

.get-in-touch-form .checkbox-container .wpcf7-list-item input[type="checkbox"] {
    width: 15px;
    margin-right: 15px;
    margin-top: 0;
}


.get-in-touch-form .checkbox-container .wpcf7-list-item .wpcf7-list-item-label {
    color: #081C2A;

}


@media(max-width:1023px) {
    .get-in-touch-form textarea {
        margin-top: 20px;
    }
}


.get-in-touch-form input:focus {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 0.75px solid #081C2A;
    padding-left: 25px;
    padding-right: 25px;
}

/* Hide default checkbox */
/* .custom-checkbox input[type="checkbox"] {
    display: none;
} */

/* Style the custom checkbox */
.custom-checkbox label {
    position: relative;
    padding-left: 30px;
    /* Space for the custom box */
    cursor: pointer;
    font-family: "Noto Sans SC", Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #081C2AB2;
    line-height: 1.5;
}

/* Add the custom box */
/* .custom-checkbox label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0px 1px 3px 0px #0000001F inset !important;
} */

/* Add a checkmark when checked */
.custom-checkbox input[type="checkbox"]:checked+label::before {
    background-color: #007bff;
    border-color: #007bff;
    content: '✔';
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
}

/* Optional: Add hover effect */
/* .custom-checkbox label:hover::before {
    border-color: #0056b3;
} */

.tparrows {
    background: #000;
    background: transparent !important;
}

.home-adv-template {
    margin-top: 20px !important;
}


/* Modal Wrapper - Default Hidden */
.invest-info-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.invest-info-modal-d-none {
    display: none;
}

/* Modal Content */
.invest-info-modal-content {
    background-color: #fff;
    width: 562px;
    /* Adjust width */
    padding: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    /* Shadow */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Close Button */
.invest-info-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.button-wrapper {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}

.invest-info-modal-btn {
    cursor: pointer;
    background: #081C2A;
    font-family: "Noto Sans SC", Arial, sans-serif;
    width: 220px;
    padding: 15px 50px 15px 50px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #FFFFFF;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}


.ii-bottom-interest .invest-info-modal-btn {
    cursor: pointer;
    background: #081C2A;
    font-family: "Noto Sans SC", Arial, sans-serif;
    width: 220px;
    padding: 10px 50px 10px 50px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

@media (max-width: 1023px) {
    .invest-info-modal-btn {
        /* width: 140px; */
        padding: 10px 30px 10px 30px;
        font-size: 14px;
        font-weight: 500;
    }
}


.invest-info-modal-btn:hover {
    background: #EEEFEA;
    color: #081C2A;
}

.ii-detail-top-btn .invest-info-modal-btn:hover {
    background: #FFFFFF;
    color: #081C2A;
}

.ii-bottom-interest .invest-info-modal-btn:hover {
    background: #FFFFFF;
    color: #081C2A;
}

.invest-info-modal-header {
    margin-bottom: 25px;
}



.invest-info-modal-header-title {
    font-family: "Noto Sans SC", Arial, sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.5;
    color: #081C2A;
}

.invest-info-modal-header-des {
    font-family: "Noto Sans SC", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #081C2AB2;
}


.invest-info-modal-form input[type="text"],
.invest-info-modal-form input[type="tel"],
.invest-info-modal-form input[type="email"],
.invest-info-modal-form select,
.invest-info-modal-form textarea {
    width: 100%;
    background: #081C2A1A;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 0.75px solid #081C2A;
    padding-left: 25px;
    padding-right: 25px;
    color: #081C2A;
    margin-bottom: 25px;
}

.invest-info-modal-form input[type="text"]:focus,
.invest-info-modal-form input[type="tel"]:focus,
.invest-info-modal-form input[type="email"]:focus,
.invest-info-modal-form select:focus,
.invest-info-modal-form textarea:focus {
    width: 100%;
    background: #081C2A1A;
    border-bottom: 0.75px solid #081C2A;
    padding-left: 25px;
    padding-right: 25px;
    color: #081C2A;
}

.invest-info-modal-form input::placeholder {
    color: #081C2A;
    /* Change to your desired color */
    opacity: 1;
    /* Ensure full opacity */
}

.invest-info-modal-form textarea::placeholder {
    color: #081C2A;
    /* Change to your desired color */
    opacity: 1;
    /* Ensure full opacity */
}

/* Fade-In State */
.invest-info-modal.fade-in {
    display: flex;
    /* Ensure it's visible */
    opacity: 1;
    /* Fully visible */
}

/* Fade-Out State */
.invest-info-modal.fade-out {
    display: flex;
    /* Keep it visible during animation */
    opacity: 0;
    /* Fade out */
    pointer-events: none;
    /* Prevent interaction during fade-out */
}


/* Collaboration Dropdown */

.cm-dropdown-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.cm-selected-item {
    border-bottom: 2px solid #EEEFEA;
    cursor: pointer;
    position: relative;
    /* Necessary for the arrow positioning */
    display: flex;
    /* Align content horizontally */
    align-items: center;
    /* Center items vertically */
    justify-content: space-between;
    padding: 10px;
    /* Add padding for better spacing */
    height: 14.6vw;
}

.cm-selected-item img {
    height: 14.6vw;
    margin-right: 10px;
    /* Add some spacing between the image and text, if needed */
}

.cm-dropdown-container .cm-selected-item .cm-arrow img {
    width: 3vw;
    flex-grow: 1;
}

.cm-arrow {
    display: flex;
}

.cm-selected-item::after {
    position: absolute;
    right: 10px;
    /* Position the arrow on the right */
    top: 50%;
    transform: translateY(-50%);
    /* Center the arrow vertically */
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000;
    /* Arrow color */
    pointer-events: none;
    /* Ensure the arrow doesn’t interfere with clicking */
}

.cm-dropdown-container.open .cm-selected-item::after {
    transform: translateY(-50%) rotate(180deg);
    /* Rotate the arrow when dropdown is open */
}


.cm-dropdown-items {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #EEEFEA;
    z-index: 10;
    display: none;
    padding: 0 20px 0 20px;
}

.cm-dropdown-items .cm-item {
    padding: 10px;
    cursor: pointer;
    background: #EEEFEA;
    border-bottom: 1px solid var(--black-30, #081C2A4D);


}

.cm-dropdown-items .cm-item:hover {
    background-color: #f0f0f0;
}

.cm-dropdown-container.open .cm-dropdown-items {
    display: block;
}

.cm-dropdown-container .cm-selected-item .cm-arrow img {
    transition: transform 0.3s ease;
    /* Adds a smooth transition */
}

.cm-dropdown-container .cm-selected-item .cm-arrow img.rotated {
    transform: rotate(180deg);
}

.nbm-arrow {
    display: flex;
}

#collaboration-section .panel-container .r-tabs-accordion-title {
    display: none !important;
}

@media(max-width:1023px) {
    #collaboration-section .tabs {
        display: none !important;
    }
}

@media(min-width:1024px) {
    .cm-dropdown-container {
        display: none !important;
    }
}

#collaboration-section .ue-grid-item-image {
    height: 57.71px;
}

/* Project List Mobile Dropdown */

.plm-dropdown-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.plm-selected-item {
    border-bottom: 2px solid #EEEFEA;
    cursor: pointer;
    position: relative;
    /* Necessary for the arrow positioning */
    display: flex;
    /* Align content horizontally */
    align-items: center;
    /* Center items vertically */
    justify-content: space-between;
    padding: 10px 20px 10px 20px;
    /* Add padding for better spacing */
    height: 14.6vw;
    font-family: "Noto Sans SC", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #081C2AB2;
}

.plm-selected-item img {
    height: 24px;
    margin-right: 10px;
    /* Add some spacing between the image and text, if needed */
}

.plm-dropdown-container .plm-selected-item .plm-arrow img {
    width: 3vw;
    flex-grow: 1;
}

.plm-dropdown-container .plm-selected-item .plm-arrow img {
    transition: transform 0.3s ease;
    /* Adds a smooth transition */
}

.plm-dropdown-container .plm-selected-item .plm-arrow img.rotated {
    transform: rotate(180deg);
}


.plm-arrow {
    display: flex;
}

.plm-selected-item::after {
    position: absolute;
    right: 10px;
    /* Position the arrow on the right */
    top: 50%;
    transform: translateY(-50%);
    /* Center the arrow vertically */
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000;
    /* Arrow color */
    pointer-events: none;
    /* Ensure the arrow doesn’t interfere with clicking */
}

.plm-dropdown-container.open .plm-selected-item::after {
    transform: translateY(-50%) rotate(180deg);
    /* Rotate the arrow when dropdown is open */
}


.plm-dropdown-items {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #EEEFEA;
    z-index: 10;
    display: none;
    padding: 25px 20px 25px 20px;
}

.plm-dropdown-items .plm-item {
    padding: 10px;
    cursor: pointer;
    background: #EEEFEA;
    border-bottom: 1px solid var(--black-30, #081C2A4D);
    font-family: "Noto Sans SC", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #081C2AB2;


}

.plm-dropdown-items .plm-item img {
    display: none !important;
}

.plm-dropdown-items .plm-item:hover {
    background-color: #f0f0f0;
}

.plm-dropdown-container.open .plm-dropdown-items {
    display: block;
}

@media(max-width:1023px) {
    #collaboration-section .tabs {
        display: none !important;
    }
}

@media(min-width:1024px) {
    .plm-dropdown-container {
        display: none !important;
    }
}

/* Project Detail Mobile Dropdown */

.pdm-dropdown-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.pdm-selected-item {
    border-bottom: 2px solid #EEEFEA;
    cursor: pointer;
    position: relative;
    /* Necessary for the arrow positioning */
    display: flex;
    /* Align content horizontally */
    align-items: center;
    /* Center items vertically */
    justify-content: space-between;
    padding: 10px 20px 10px 20px;
    /* Add padding for better spacing */
    height: 14.6vw;
    font-family: "Noto Sans SC", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #081C2AB2;
}

.pdm-selected-item img {
    height: 24px;
    margin-right: 10px;
    /* Add some spacing between the image and text, if needed */
}

.pdm-dropdown-container .pdm-selected-item .pdm-arrow img {
    width: 3vw;
    flex-grow: 1;
}

.pdm-arrow {
    display: flex;
}

.pdm-selected-item::after {
    position: absolute;
    right: 10px;
    /* Position the arrow on the right */
    top: 50%;
    transform: translateY(-50%);
    /* Center the arrow vertically */
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000;
    /* Arrow color */
    pointer-events: none;
    /* Ensure the arrow doesn’t interfere with clicking */
}

.pdm-dropdown-container.open .pdm-selected-item::after {
    transform: translateY(-50%) rotate(180deg);
    /* Rotate the arrow when dropdown is open */
}


.pdm-dropdown-items {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #EEEFEA;
    z-index: 10;
    display: none;
    padding: 25px 20px 50px 20px;
}

.pdm-dropdown-items .pdm-item {
    padding: 20px 10px 20px 10px;
    cursor: pointer;
    background: #EEEFEA;
    border-bottom: 1px solid var(--black-30, #081C2A4D);
    font-family: "Noto Sans SC", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #081C2AB2;


}

.pdm-dropdown-items .pdm-item img {
    display: none !important;
}

.pdm-dropdown-items .pdm-item:hover {
    background-color: #f0f0f0;
}

.pdm-dropdown-container.open .pdm-dropdown-items {
    display: block;
}

@media(max-width:1023px) {
    .project-detail-tab .e-n-tabs-heading {
        display: none !important;
    }
}

@media(min-width:1024px) {
    .pdm-dropdown-container {
        display: none !important;
    }
}


/* News Mobile Dropdown */

.nbm-dropdown-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.nbm-selected-item {
    border-bottom: 2px solid #EEEFEA;
    cursor: pointer;
    position: relative;
    /* Necessary for the arrow positioning */
    display: flex;
    /* Align content horizontally */
    align-items: center;
    /* Center items vertically */
    justify-content: space-between;
    padding: 10px 20px 10px 20px;
    /* Add padding for better spacing */
    height: 14.6vw;
    font-family: "Noto Sans SC", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #081C2AB2;
}

.nbm-selected-item img {
    height: 24px;
    margin-right: 10px;
    /* Add some spacing between the image and text, if needed */
}

.nbm-dropdown-container .nbm-selected-item .nbm-arrow img {
    width: 3vw;
    flex-grow: 1;
}

.nbm-dropdown-container .nbm-selected-item .nbm-arrow img.rotated {
    transform: rotate(180deg);
}

.nbm-arrow {
    display: flex;
}

.nbm-selected-item::after {
    position: absolute;
    right: 10px;
    /* Position the arrow on the right */
    top: 50%;
    transform: translateY(-50%);
    /* Center the arrow vertically */
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000;
    /* Arrow color */
    pointer-events: none;
    /* Ensure the arrow doesn’t interfere with clicking */
}

.nbm-dropdown-container.open .nbm-selected-item::after {
    transform: translateY(-50%) rotate(180deg);
    /* Rotate the arrow when dropdown is open */
}


.nbm-dropdown-items {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #EEEFEA;
    z-index: 10;
    display: none;
    padding: 25px 20px 25px 20px;
}

.nbm-dropdown-items .nbm-item {
    padding: 20px 10px 20px 10px;
    cursor: pointer;
    background: #EEEFEA;
    border-bottom: 1px solid var(--black-30, #081C2A4D);
    font-family: "Noto Sans SC", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #081C2AB2;


}

.nbm-dropdown-items .nbm-item img {
    display: none !important;
}

.nbm-dropdown-items .nbm-item:hover {
    background-color: #f0f0f0;
}

.nbm-dropdown-container.open .nbm-dropdown-items {
    display: block;
}

@media(max-width:1023px) {
    .news-blog-tab .e-n-tabs-heading {
        display: none !important;
    }
}

@media(min-width:1024px) {
    .nbm-dropdown-container {
        display: none !important;
    }
}

.reason-to-invest-section.why-invest-in-section .panel-container .r-tabs-accordion-title {
    background: #EEEFEA;
    position: relative;
}

.reason-to-invest-section.why-invest-in-section .r-tabs-accordion-title a::after {
    content: '';
    background-image: url('./inc/assets/icon/accordion-open.svg');
    background-size: contain;
    /* Ensures the image fits within the width/height */
    background-repeat: no-repeat;
    width: 50px;
    /* Control the width */
    height: 50px;
    /* Control the height */
    position: absolute;
    right: 2vw;
    top: 1.5vw;
    bottom: auto;
}


.reason-to-invest-section.why-invest-in-section .r-tabs-accordion-title.r-tabs-state-active a::after {
    content: '';
    background-image: url('./inc/assets/icon/accordion-close.svg');
    background-size: contain;
    /* Ensures the image fits within the width/height */
    background-repeat: no-repeat;
    width: 6vw;
    /* Control the width */
    height: 6vw;
    /* Control the height */
    position: absolute;
    right: 3vw;
    top: auto;
    bottom: auto;
}

.news-blog-tab .e-n-tabs-heading {
    margin: 0 0 0 270px;
    border-left: 2px solid #081C2A1A;
}

.news-cell .ae-post-meta-list-wrapper .has_ae_slider {
    display: none;
}


.news-blog-tab .ae-post-meta-item-wrapper {
    padding: 0;
}


@media(max-width:1023px) {
    .news-blog-tab .ae-post-meta-item-wrapper {
        padding-left: 5%;
    }
}


.dl-handbook-form,
.register-now-form {
    padding-left: 0;
    padding-right: 0;
}


.dl-handbook-form .first,
.register-now-form .first,
.invest-info-modal-content .custom-checkbox .first {
    margin: 0;
}

.dl-handbook-form .first label,
.register-now-form .first label,
.invest-info-modal-content .custom-checkbox label {
    padding-left: 0;
}

.register-now-form .form-content p,
.invest-info-modal-content .form-content p {
    margin-bottom: 0;
}

.schedule-visit-form-checkbox {
    margin-bottom: 30px;
}

.dl-handbook-form .submit-container input[type="submit"],
.invest-info-modal-form .schedule-visit-form-submit input[type="submit"] {
    background: #081C2A;
    width: 200px;
    height: 50px;
    padding: 10px 50px 10px 50px;
    border: 0;
    border-radius: 4px;
    font-family: Noto Sans SC;
    font-size: 14px;
    font-weight: 500;
    line-height: 18.2px;
    color: #FFFFFF;
}

.dl-handbook-form .submit-container input[type="submit"]:hover,
.invest-info-modal-form .schedule-visit-form-submit input[type="submit"]:hover {
    background: #EEEFEA;
    color: #081C2A;
}

.dl-handbook-form .submit-container,
.invest-info-modal-form .schedule-visit-form-submit {
    text-align: center;
}

.dl-handbook-form .submit-container .wpcf7-spinner,
.invest-info-modal-form .schedule-visit-form-submit .wpcf7-spinner {
    position: absolute;
    display: none;
    height: 50px;
}

/* Modal Background */
.sns-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Black overlay */
    justify-content: center;
    align-items: center;
}

/* Mobile version of the modal */
@media (max-width: 1023px) {
    .invest-info-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        overflow: auto;
        opacity: 0;
        transition: opacity 0.35s ease-in-out;
    }

    .invest-info-modal.show {
        display: block;
        opacity: 1;
    }

    .invest-info-modal-content {
        width: 90%;
        height: 100%;
        padding: 20px;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        left: -100%;
        justify-content: flex-start;
        transition: left 0.35s ease-in-out;
    }

    .invest-info-modal.show .invest-info-modal-content {
        left: 0;
    }

    .invest-info-modal-close {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 24px;
        font-weight: bold;
        color: #333;
        cursor: pointer;
    }

    .dl-handbook-form .submit-container input[type="submit"],
    .invest-info-modal-form .schedule-visit-form-submit input[type="submit"] {
        background: #081C2A;
        width: 140px;
        height: 50px;
        padding: 10px 30px 10px 30px;
        border: 0;
        border-radius: 4px;
        font-family: Noto Sans SC;
        font-size: 14px;
        font-weight: 500;
        line-height: 18.2px;
        color: #FFFFFF;
        margin-top: 20px;
    }
}





/* Modal Content Box */
.sns-modal-content {
    background-color: #fff;
    position: relative;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

/* Modal Image */
.sns-modal-image {
    max-width: 100%;
    height: auto;
}

/* Close Button */
.sns-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.sns-close:hover {
    color: red;
}

/* .ue_taxonomy_item{
    border-width:0 0 3px 0 !important;
} */

.ue_taxonomy_item.uc-selected {
    padding-bottom: 18.5px !important;
}

.pl-header .swiper-fade .swiper-slide-active {
    pointer-events: none !important;
}


/* Why Office carousel */
.why-darglobal-office .elementor-widget-container .swiper-wrapper .type-office:nth-child(3) {
    padding-left: 100px;
}

.why-darglobal-office .elementor-widget-container .swiper-wrapper .type-office:nth-child(5),
.why-darglobal-office .elementor-widget-container .swiper-wrapper .type-office:nth-child(7),
.why-darglobal-office .elementor-widget-container .swiper-wrapper .type-office:nth-child(9),
.why-darglobal-office .elementor-widget-container .swiper-wrapper .type-office:nth-child(11) {
    padding-left: 100px;
    margin-left: -100px;
}


.why-darglobal-office .swiper {
    margin-right: -300px;
}


@media(max-width:1023px) {
    .pd-handbook .invest-info-modal-btn {
        width: 165px;
        transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;

    }
}

.view-image {
    background-position: center;
    background-size: cover;
}